0 I am kind of new to GraphQL world and i am stuck at a, i would say, very basic problem. I dug around couple of docs and guides and i could not find any hint if it is even possible or not with GraphQL or what might be a workaround. What i want to […]
26 I was just reading the glibc sscanf man page (from the Linux man-pages package) and I found the following: The following conversion specifiers are available: (…) d Deprecated. Matches an optionally signed decimal integer; the next pointer must be a pointer to int. i Deprecated. Matches an optionally signed integer; the next […]
0 I want to support multiple languages: { products(first:10,) { edges { node { title # Include other fields to retrieve within translations } } } } I want the title response in Urdu. I am using admin/api/2023-07/graphql.json graphql internationalization shopify-api Share Improve this question Follow edited 20 hours ago Michel Floyd 19.3k44 gold badges2525 […]
0 I’ve got GraphQl code like this : const queryGraphQL = { query: `query { products(searchInput: { parameters: [{ id: 915 values:[4095,4170] } ] }, settingsInput: {limit:35 }) { products { producer{ link name id } awardedParameters { id name values { name link } } } } }`, } const fetchData = async () […]
0 I am using Apollo Client in my Astro project. I have the following GraphQL query: const { data, loading, errors } = await client.query({ query: GET_PAGE, variables: { url: uri, }, errorPolicy: ‘all’, }); Also I defined my errorLink, based on the Apollo docs: const errorLink = onError(({ graphQLErrors, networkError }) => { if […]
0 I need to insert record in through one SubGraph and based on returned Id I want to update record in another SubGraph. Looks like apollo doesn’t support mutation chaining directly (can’t pass Id from one mutation to the other one). Can we do a query, get an Id and then use that in a […]
Hi there, My name is Mike from Monkey Digital, Allow me to present to you a lifetime revenue opportunity of 35% That’s right, you can earn 35% of every order made by your affiliate for life. Simply register with us, generate your affiliate links, and incorporate them on your website, and you are done. It […]
Hi I have just took an in depth look on your letslearngraphql.com for the current search visibility and saw that your website could use a boost. We will improve your ranks organically and safely, using only state of the art AI and whitehat methods, while providing monthly reports and outstanding support. More info: Unbeatable SEO […]
0 I’m trying to create a middleware to receive a token from the header, but it never seems to trigger, and I never see the ‘hello’ log message I inserted at the top of the middleware. const jwt = require(‘jsonwebtoken’); const { GraphQLError } = require(‘graphql’); module.exports = async ({ req }) => { console.log(‘hello’); […]