Node
Base interface for all objects with a unique ID
Fields
Field
Type
Description
Implementing Types
Usage Example
query {
node(id: "customer-123") {
id
# ... other fields based on the type
# Use fragments to access type-specific fields
... on Customer {
name
}
}
}Last updated
Was this helpful?
