-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
backlogKeep open for later (typically, not a problem for SPIRIT but maybe for other woo.sh projects)Keep open for later (typically, not a problem for SPIRIT but maybe for other woo.sh projects)
Description
As per #19 (comment), @keski asks the following:
The purpose of the reverse links is primarily to make querying more flexible and expressive. However, do we also want to support data creation via these reverse edges? For example,
type A {
value: B
}
type B {
name: String!
_valueOfA: [A] # Reverse link, 1:N
}
input _InputToCreateA {
value: _InputToConnectB
}
input _InputToConnectA {
connect: ID!
create: _InputToCreateA
}
input _InputToCreateB {
name: String!
_valueOfA: _InputToConnectA # do we include this field?
}
input _InputToConnectB {
connect: ID!
create: _InputToCreateB
}
Metadata
Metadata
Assignees
Labels
backlogKeep open for later (typically, not a problem for SPIRIT but maybe for other woo.sh projects)Keep open for later (typically, not a problem for SPIRIT but maybe for other woo.sh projects)