src prompts tags list
List all tags in your Sourcegraph instance.
Usage
BASHsrc prompts tags list [flags]
Examples
BASH# List all tags src prompts tags list # Search for tags by name src prompts tags list -query="go" # Paginate through results src prompts tags list -limit=10 -after="cursor" # Select specific columns to display src prompts tags list -c id,name # Output results as JSON src prompts tags list -json # Combine search and pagination src prompts tags list -query="python" -limit=5
Flags
| Flag | Description |
|---|---|
-query | Search prompt tags by name |
-limit | Maximum number of tags to list (default: 100) |
-after | Cursor for pagination (from previous page's endCursor) |
-c | Comma-separated list of columns to display. Available: id,name (default: "id,name") |
-json | Output results as JSON for programmatic access |
API flags
| Flag | Description |
|---|---|
-dump-requests | Log GraphQL requests and responses to stdout |
-get-curl | Print the curl command for executing this query and exit (WARNING: includes printing your access token!) |
-insecure-skip-verify | Skip validation of TLS certificates against trusted chains |
-trace | Log the trace ID for requests. See https://docs.sourcegraph.com/admin/observability/tracing |
-user-agent-telemetry | Include the operating system and architecture in the User-Agent sent with requests to Sourcegraph (default: true) |