-
Notifications
You must be signed in to change notification settings - Fork 54
Simple entity quries
Igor Dianov edited this page May 29, 2024
·
3 revisions
You can fetch a single node or multiple nodes of the same type using a simple object query.
For Example:
query {
Human(id: 1) { name }
}
Will return:
Human: {
name: "Luke Skywalker"
}