0
mycolllection(where:{wasAmycollectionGivenBy_SINGLE:{id:{{{entityID}}}}}) {
I tried: {{entityID}}
I tried: "{{{entityID}}}"
I tried: {entityID}
I tried: {entityID}
I am getting error
[myCollectionAPI] Failed to get the mycollection info F27379A9-FEC8-4BF9-AD37-C2701296B143 : {"status":500,"message":"Parse error on line 2:n…NGLE:{id:{{{entityID}}}}}) {r totalCoun———————–^nExpecting ‘CLOSE_UNESCAPED’, ‘OPEN_SEXPR’, ‘ID’, ‘STRING’, ‘NUMBER’, ‘BOOLEAN’, ‘UNDEFINED’, ‘NULL’, ‘DATA’, got ‘CLOSE_RAW_BLOCK’","errors":["Error: Parse error on line 2:n…NGLE:{id:{{{entityID}}}}}) {r totalCoun———————–^nExpecting ‘CLOSE_UNESCAPED’, ‘OPEN_SEXPR’, ‘ID’, ‘STRING’, ‘NUMBER’, ‘BOOLEAN’, ‘UNDEFINED’, ‘NULL’, ‘DATA’, got ‘CLOSE_RAW_BLOCK’n
What can I try next?
1
Hi Sun, The graphql query seems to be malformed, I'm not sure how it should look as this question is lacking information about the schema, but it should probably be something similar to:
mycolllection(where:{wasAmycollectionGivenBy_SINGLE:{id:"my-entity-id"}})
Apr 12 at 9:53