Query :
query {
read(input:{
collection:"assetsMetas",
}){
name
jwe
date
}
}
I got this error:
{"error": {"extensions": {}, "locations": [[Object]], "message": "Cannot convert undefined or null to object", "path": ["read"]}}
Solution
I need to add filter in the body of query:
query {
read(input:{
collection:"assetsMetas",
filter:{} // <------ Added here
}){
name
jwe
date
}
}
Query :
I got this error:
Solution
I need to add
filterin the body of query: