home / docs / sections

Menu

sections: introspection:jumpview

This data as json

id page ref title content breadcrumbs references
introspection:jumpview introspection jumpview /-/jump Returns a JSON list of items that the current actor has permission to view for Datasette's jump menu. By default this includes visible databases, tables, views and canned queries, and plugins can contribute additional items. Each item includes a type string used as a category label in the menu. Items can also include an optional description with longer text describing that individual result. The endpoint supports a ?q= query parameter for filtering items by name. Jump example : { "matches": [ { "name": "fixtures", "url": "/fixtures", "type": "database", "description": null }, { "name": "fixtures: facetable", "url": "/fixtures/facetable", "type": "table", "description": null }, { "name": "fixtures: recent_releases", "url": "/fixtures/recent_releases", "type": "query", "description": null } ], "truncated": false } Search example with ?q=facet returns only items matching .*facet.* : { "matches": [ { "name": "fixtures: facetable", "url": "/fixtures/facetable", "type": "table", "description": null } ], "truncated": false } When multiple search terms are provided (e.g., ?q=user+profile ), items must match the pattern .*user.*profile.* . Results are ordered by relevance, then by item type and shortest display name. ["Introspection"] [{"href": "https://latest.datasette.io/-/jump", "label": "Jump example"}]
Powered by Datasette · Queries took 5.234ms