Get the ID of project when you only have the accessCode for the project.
Request
Query for a project's id
by the project's accessCode
.
query {
coreId(accessCode: String!) {
coreId
}
}
Variables
Name | Type |
---|---|
accessCode | String The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. |
Response
Returns the project's id.
{
"data": {
"coreId": "AAAAA_aaaaa"
}
}