Steven Vachon
06/05/2019, 5:36 PMquery ($id: ResumeWhereUniqueInput!) {
resume(where: $id) {
coverLetter
positions {
id
}
}
}
with {
"id": {
"id": "cjwj8wq7k01980766ixv2jcy2"
}
}
produces {
"data": {
"resume": {
"coverLetter": "something",
"positions": []
}
}
}
? the returned positions
array is empty for some reason... this is my schema: type Position {
description: String
id: ID! @id
}
type Resume {
coverLetter: String
id: ID! @id
positions: [Position!]!
}
evan
06/05/2019, 5:39 PMevan
06/05/2019, 5:43 PMSteven Vachon
06/05/2019, 5:43 PMevan
06/05/2019, 6:00 PMresume
contains positions
Steven Vachon
06/05/2019, 6:01 PMprisma deploy
Craig
06/05/2019, 6:22 PMSteven Vachon
06/05/2019, 6:22 PMSteven Vachon
06/05/2019, 6:50 PM