Blog
π The JetEngine extension for Gato GraphQL is here!
By Leonardo Losoviz Β·
The JetEngine extension is now available for Gato GraphQL! π
This new extension integrates Crocoblock's JetEngine with Gato GraphQL, exposing Custom Content Type (CCT) data in your GraphQL schema.
Query CCT entries with
jetengineCCTEntries, jetengineCCTEntry, and jetengineCCTEntryCountAccess field values via
fieldValue(slug) or fieldValues, with type casting (number, switcher, media, gallery, repeater, etc.)Filter, paginate, and sort CCT entries; resolve author and linked single custom post
Control which CCTs are queryable via Schema Configuration or Settings
Example query
query {
jetengineCCTEntries(cctSlug: "some_cct_slug") {
id
uniqueID
cctSlug
status
createdDate
modifiedDate
authorID
author {
id
name
}
singleCustomPostID
singleCustomPost {
id
title
}
fieldValues
someField: fieldValue(slug: "some_field_slug")
}
}More examples and documentation:
JetEngine CCTS reference β full API
Working with JetEngine β more query examples
Enjoy!