craftql
craftql copied to clipboard
A drop-in GraphQL server for Craft CMS
Im using Apollo with Graphql Code Generator to do some queries but all responses has been blocked. Its just to learn so no envs there. ![Screen Shot 2020-11-18 at 3...
I would seem that Craft relies on the requesting site when parsing Redactor content for refs. Example: Requesting from `https://siteB.com/api` ``` { entry(site: "siteA", id: 123) { myRedactorField } ```...
I've encountered a problem when deploying CraftQL to production. And devmode is not active. In `markhuot\CraftQL\Services\GraphQLService.php` ``` $debug = Craft::$app->config->getGeneral()->devMode ? DebugFlag::INCLUDE_DEBUG_MESSAGE | DebugFlag::RETHROW_INTERNAL_EXCEPTIONS : null; return GraphQL::executeQuery($schema, $input, null,...
After Updating to the latest Craft version (Craft Pro 3.6.11.1) GraphQL (1.3.6) is broken: ``` 2021-03-29 20:22:03 [-][1][-][error][TypeError] TypeError: Argument 1 passed to GraphQL\Executor\ExecutionResult::toArray() must be of the type int,...
Is it possible to mutate super table fields? To query works fine but mutation does not work. It is really important for my project so are there any plans to...
Is there a way to upload an image directly from the Browser, without loading it to a public server before? Already working: ```graphql mutation uploadImage ( $image: [FotoAssetInput] ) {...
Hey, I was pretty exited to see that craftCMS has a graphql adapter. We are wondering if the adapter also works for CraftCommerce. And if not: how to implement more...
Opened an issue with Super Table as well. https://github.com/verbb/super-table/issues/349 ### Description When you have a field that follows this structure: Matrix Block > Super Table > Dropdown Or with this...
Im currently working with CraftCMS. Im trying to get gatsby-image to work with craft, however im struggling, is there a way to do this that im not aware of?
Can't query the Date field inside table field type. Error message: `{ "error": "Expected a value of type \"String\" but received: instance of DateTime" }` Env: Craft CMS: 3.3.1.2 CraftQL:...