https://DOMAIN/virtualclinic/graphql
The WordPress installation sits in a “virtualclinic” subfolder (as can be seen in the url) – I’m wondering if the link to graphql is hardcoded into the EE plugin and so it’s not looking in the subfolder that it should be.
Reverting to EE 4.10.46 (and its older UI with the Venue on the right side instead of in the main body) allows for updating the event as per usual.
I’ve tried switching to the WordPress 2024 theme and deactivating ALL other plugins, and I still get the same error. I’ve then also tried php 7.4, 8.2, 8.3 and 8.4 – all produce the same error.
What’s going on? Is it being in a subfolder that’s causing the issue?
]]>“Not supported in the GraphQL Schema
The “photo_gallery” Field Type is not set up to map to the GraphQL Schema. If you want to query this field type in the Schema, visit our guide for?adding GraphQL support for additional ACF field types.”
The mentioned guide link is broken and doesnt take me anywhere
Is there a way to do this?
]]>I have created a translated website using GraphQL and WPML.
I have created a custom post type with a custom taxonomy and translated that in french language.
So when i fetched the posts based on taxonomy in GraphQL IDE it fetches the same language posts in both the posts weather it is English or french.
What i want is if i select the english taxonomy it needs to fetch english posts and if i select french taxonomy it needs to fetch french posts.
Can you provide a solution as to why this is happening?
]]>I want the plugin show in graphql please suggest how can i do to show in the graphql wordpress
thanks and regards
mohit thakur
]]>I have a few pre sale questions:
Is this plugin compatible with a WordPress multisite subdirectory installation and if so what pricing plan is applicable? Are multiple licenses required?
Can this plugin connect to a external GraphQL API to create WordPress posts, custom post types and taxonomies?
Are API sources and keys stored securely/encoded and not accessible from the website frontend?
When post/taxonomy content is updated from the external source, does this plugin remove and rebuild posts/taxonomies or is only the updated content changed within posts and taxonomies?
Can this plugin add API data to ACF (Advanced Custom Fields) fields e.g. image, text, text area fields?
Cheers,
]]>But does it support graphql?
For example, I created color attribute of color type with red, green, blue color terms, and assigned hex code. Then assigned it to products. How do I get the attribute type (‘color’) and the value (hex code) when I am listing product variations?
query getProducts {
products {
edges {
node {
slug
... on VariableProduct {
name
allPaColor {
nodes {
variations {
nodes {
attributes {
nodes {
label
name
value
}
}
}
}
paColorId
}
}
}
}
}
}
}
This gives label, name and value for color attribute (available in default woocommerce) associated to product, example:
"products": {
"edges": [
{
"node": {
"slug": "product-2",
"name": "Product 2",
"allPaColor": {
"nodes": [
{
"variations": {
"nodes": [
{
"attributes": {
"nodes": [
{
"label": "Size",
"name": "size",
"value": "S"
},
{
"label": "Color",
"name": "pa_color",
"value": "blue"
}
]
}
}
]
},
"paColorId": 22
},
}}}}
But I am not finding the field in GraphIQL IDE which can give the color hex code and the type of attribute alongwith.
How to query the set swatches with products?
—
Also how to independently query the attribute terms saved in woocommerce? To get name and value along with the added fields by this plugin — type and the color code. I mean how to independently get this list of terms in color attribute with color code?
Please suggest.
I installed Pods – Custom Content Types and Fields plugin latest version 3.2.1 , and created a Settings Page with some text fields for global values like social media urls, etc.
But I am unable to see any of these fields or groups from settings page in GraphiQL IDE.
I created a content type with Pods for test, there I see the graphql tab to enable/disable. But no such setting to check wpgraphql available for the Settings Page I created.
By what graphql query I can fetch those values? Or any code snippet need to write for it? The purpose for which I used Pods seems not working. Please suggest.
]]>