CockpitQL icon indicating copy to clipboard operation
CockpitQL copied to clipboard

GraphQL addon for Cockpit CMS - https://github.com/agentejo/cockpit

Results 18 CockpitQL issues
Sort by recently updated
recently updated
newest added

I am trying to get latest posts from my collection, but want only to fetch those that are published until this day today. So I want to know how to...

Let's consider I have a collection of blog posts called `posts`. Then I will have access to a GraphQL command called `allPosts`. This works perfectly fine except when dealing with...

bug

Is it actually possible to filter by query variables? ``` query post($id: String) { allPosts(filter: {_id: $id}) { title __typename } } ``` ``` { "id": "5c69be76387945700280002a4" } ``` I...

` Fatal error: Uncaught Error: Call to a member function on() on null in E:\phpStudy\PHPTutorial\WWW\api.php:10 Stack trace: #0 E:\phpStudy\PHPTutorial\WWW\bootstrap.php(309): include() #1 E:\phpStudy\PHPTutorial\WWW\index.php(22): require('E:\\phpStudy\\PHP...') #2 {main} thrown in E:\phpStudy\PHPTutorial\WWW\api.php on line...

```graphql { allPerson { name image { url } } } ``` It returns `url` as `null`. It seems like linked items only return `_id`

Thank you for this awesome addon. Is there a way to use GraphQL mutations with it ?

The codebase suggess that the lang parameter is only effective when the _id parameter is defined as well. However, it seems that when we query a collection with the _id...

Wondering how it will be possible with CockpitQL to query the "Cockpit" namespace api methods such as listUsers ("/api/cockpit/listUsers"). What I'm looking to be able to do is retrieve a...