For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • QUERYclient
          • QUERYstore
          • QUERYsystem
          • QUERYnode
          • QUERYnodes
          • QUERYsupportedLocales
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminQueries

client

Example Query
1query ExampleQuery {
2 client {
3 clientId
4 scopes {
5 pageInfo
6 edges
7 }
8 }
9}
Example response
1{
2 "data": {
3 "client": {
4 "clientId": "example",
5 "scopes": {
6 "pageInfo": {
7 "hasNextPage": null,
8 "hasPreviousPage": null,
9 "startCursor": null,
10 "endCursor": null
11 },
12 "edges": [
13 {
14 "node": null,
15 "cursor": null
16 }
17 ]
18 }
19 }
20 }
21}
A client.
Was this page helpful?
Previous

unsubscribe

Next

store

Built with

Returns

an optional Client
clientIdString
Identifier of a client.
scopesScopeConnection
List of client scopes.