Skip to content

Commit 756407b

Browse files
committed
chore: expose getAccessToken
1 parent 4f10963 commit 756407b

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
query getAccessToken($authorizationCode: String!){
2+
getAccessToken(authorizationCode: $authorizationCode)
3+
}

src/main/resources/graphql/schema.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4521,6 +4521,37 @@
45214521
"isDeprecated": false,
45224522
"deprecationReason": null
45234523
},
4524+
{
4525+
"name": "getAccessToken",
4526+
"description": null,
4527+
"args": [
4528+
{
4529+
"name": "authorizationCode",
4530+
"description": null,
4531+
"type": {
4532+
"kind": "NON_NULL",
4533+
"name": null,
4534+
"ofType": {
4535+
"kind": "SCALAR",
4536+
"name": "String",
4537+
"ofType": null
4538+
}
4539+
},
4540+
"defaultValue": null
4541+
}
4542+
],
4543+
"type": {
4544+
"kind": "NON_NULL",
4545+
"name": null,
4546+
"ofType": {
4547+
"kind": "SCALAR",
4548+
"name": "String",
4549+
"ofType": null
4550+
}
4551+
},
4552+
"isDeprecated": false,
4553+
"deprecationReason": null
4554+
},
45244555
{
45254556
"name": "getAccessPermissions",
45264557
"description": null,

0 commit comments

Comments
 (0)