Via Cockpit CLI (Cockpit 0.9.1 or greater):
./cp install/addon --name CockpitQL
Manually:
- download the repository;
- add it as a subfolder to the
./addons
directory.
Either way, the final tree should look as follows:
user@pc:/path/to/cockpit/folder$ tree -d -L 2 -n
.
├── addons
│ └── CockpitQL
...
GraphQL entry point:
/api/graphql/query?token=*apitoken*
{
collection(name:"posts", filter:{published:true})
}
Assume we have a collection named posts
, you can also query like this
{
postsCollection(filter:{published:true}){
_id,
title
content,
image{
path
}
}
}