captaindaylight
04/19/2019, 5:08 PMchrisbull
04/19/2019, 5:57 PMtype ShortCodeTx {
id: ID! @id
jars: [Jar!]! @relation(link: TABLE, name: "ShortCodeTxJars")
}
type ShortCodeTxJars @relationTable {
jar: Jar!
shortCodeTx: ShortCodeTx!
}
type Jar {
id: ID! @id
transactions: [ShortCodeTx!]!
}
try
type ShortCodeTx {
id: ID! @id
jars: [Jar!]! @relation(link: TABLE, name: "ShortCodeTxJars")
}
type Jar {
id: ID! @id
transactions: [ShortCodeTx!]!
}
type ShortCodeTxJars @relationTable {
jar: Jar!
shortCodeTx: ShortCodeTx!
}
I’ve noticed that order matters for Prismacaptaindaylight
04/19/2019, 6:29 PM