Executes a graphQL query against the API.
This examples shows how to retrieve the current identity of the caller
import { Graphql,Query,SelfQuery, Identity } from '@tokens-studio/sdk';const response = await Graphql.exec<SelfQuery>({ query:Query.raw.self});const identity = response.data?.self as Identity;
Generated using TypeDoc
Executes a graphQL query against the API.
Example
This examples shows how to retrieve the current identity of the caller