GraphQL API Examples
Examples for how to use Objects Grid GraphQL API
Create an Access Token example
mutation CreateAccessToken{
createUserAccountAccessToken(input: {
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange"
subject_token: "your id token here, use https://admin.objectsgrid.com/google_token.html to get one"
subject_token_type: "urn:ietf:params:oauth:token-type:id_token"
client_id: "your organization account id org-???-????"
}){
access_token
token_type
expires_in
refresh_token
}
}{
"X-ObjectsGrid-Accesspoint": "EU"
}Create Generic Object
Retrieve Generic Object
Update a Generic Object
Delete Generic Object
List Generic Objects
Create EnumStringLocalized
Retrieve EnumStringLocalized
Update EnumStringLocalized
Delete EnumStringLocalized
List Enums IDs
Last updated
Was this helpful?