GraphQL and SIS IDs

dtod
Community Contributor

Is there a way to work with /graphiql and SIS IDs, e.g. sis_login_id. I can do a query like:

query MyQuery {
legacyNode(_id: "3", type: User) {
... on User {
id
email
name
avatarUrl
createdAt
enrollments {
lastActivityAt
section {
name
}
grades {
currentGrade
}
}
}
}
}

But how do I work with SIS IDs, like https://canvas.instructure.com/doc/api/file.object_ids.html

0 Likes