GraphQL entry point:
/api/graphql?token=*apitoken*
{
region(name:"test"),
collection(name:"posts", filter:{published:true})
}
Assume we have a collection named posts
, you can also query like this
{
allPosts(filter:{published:true}){
_id,
title
content,
image{
path
}
}
}