src config list

Flags

Name Description Default Value
-dump-requests Log GraphQL requests and responses to stdout false
-f Format for the output, using the syntax of Go package text/template. (e.g. "{{. json}}")
-get-curl Print the curl command for executing this query and exit (WARNING: includes printing your access token!) false
-subject The ID of the settings subject whose settings to list. (default: authenticated user)
-trace Log the trace ID for requests. See https://docs.sourcegraph.com/admin/observability/tracing false

Usage

Usage of 'src config list':
  -dump-requests
    	Log GraphQL requests and responses to stdout
  -f string
    	Format for the output, using the syntax of Go package text/template. (e.g. "{{.|json}}")
  -get-curl
    	Print the curl command for executing this query and exit (WARNING: includes printing your access token!)
  -subject string
    	The ID of the settings subject whose settings to list. (default: authenticated user)
  -trace
    	Log the trace ID for requests. See https://docs.sourcegraph.com/admin/observability/tracing

Examples:

  List settings for the current user (authenticated by the src CLI's access token, if any):

    	$ src config list

  List settings for the user with username alice:

    	$ src config list -subject=$(src users get -f '{{.ID}}' -username=alice)