-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
kind/maintenanceMaintenance tasks, such as refactoring, with no impact in features.Maintenance tasks, such as refactoring, with no impact in features.
Milestone
Description
mutation {
set {
<_new_:class> <student> <_new_:x> .
<_new_:x> <name> "alice" .
}
}
Nquads syntax allows to specify file/request-local IDs called blank nodes (bnodes). This is a standard approach, and I think it will be better to use them to auto-assign internal IDs:
mutation {
set {
_:class <student> _:x .
_:x <name> "alice" .
}
}
Metadata
Metadata
Assignees
Labels
kind/maintenanceMaintenance tasks, such as refactoring, with no impact in features.Maintenance tasks, such as refactoring, with no impact in features.