Artur
Artur
Sorry, I don't get your issue. can you provide a more detailed description? Thanks!
Hi can you describe you setup in more detail, so I can try to reproduce it (incl graphql query)?
should be fixed with this commit: https://github.com/agentejo/Detektivo/commit/1971d3d3cd24a355f503ff903b103f859f45f014
@diehenne @BalintBernhardt what seems to work: ``` query post($filter: JsonType) { allPosts(filter: $filter) { title __typename } } ``` with variables: ``` {"filter": {"_id": "5c69be76387945700280002a4"}} ``` it seems that variables...
I think you're using Cockpit 2.0 -> https://github.com/Cockpit-HQ/Cockpit This repo is for https://github.com/agentejo/cockpit
You have to add a dedicated slug field to your collection.
> Thanks for the docker images. What paths should be a volume to have consistent data? Just `/var/www/html/storage`? `/var/www/html/storage` and `/var/www/html/.spaces` (if you use spaces)
Thanks for the contribution...but I have some security concerns here. Give me some time to look into this so I can come up with a solid solution
please try ``` { collection(name:"posts", filter:{published:true, tags:{$has:"news"}}) } ```
@gryphonmyers 1. this was misleading `$has` is only available when you're using MongoLite (SQLite) 2. you need to use graphql with variables, eg: ``` query posts($filter: JsonType) { collection(name:"posts", filter:$filter)...