Good day! letslearngraphql.com Did you know that it is possible to send appeal utterly legitimately? We provide a new legal method of sending letters through feedback forms. Feedback forms like these can be seen on a lot of websites. When such letters are sent, no personal data is utilized, and messages are sent to securely-designed […]
0 I have created some single types and som collection types in strapi. In my gatsby project, in the the gatsby-config.js file, I have placed the names of the single types and the collection type. collectionTypes: [‘heronodes’], singleTypes: [‘message’, ‘intro’, ‘hero’, ‘footer’], I can see all the single types in the graphql playground in gatsby, […]
0 I’m working on a shopify app using node js and react with graphql. Here is what I’m trying to achieve, the client when using my Shopify app has a dropzone where he can upload images, I’m trying to save those images to the files in his store, I keep getting the processor error when […]
0 I’m trying to build a simple api with knex and apollo server, which is running, but the querys with where retuns null the server import { ApolloServer } from ‘apollo-server’ import knex from ‘./knex’ import { resolvers, typeDefs } from ‘./schema’ import { UserSQLDataSource } from ‘./schema/users/datasource’ const server = new ApolloServer({ typeDefs, resolvers, […]
0 I use ASP.NET Core to consume GraphQL API and everything working fine, just I need pass the header because I need to use Arabica language and I don’t know how I can pass it. So I need to change language to "ar" when header is passing. [HttpPost] public async Task<IActionResult> Tracking(string code) { var […]
1 I created 2 different methods using GraphQL HotChocolate which return the same object type. I need to hide different fields for each method. However, it does not happen when I look at the schema definition. This is an example for code first approach: public class Query { private readonly CharacterRepository _repository; public Query(CharacterRepository repository) […]
2 I am calling this component from a parent component that is passing props thru the argument fields. However When I try to call the mutation function I keep getting the error: mutate is not a function. I dont understand what is causing this issue as I followed the apollo documentation online almost exactly. const […]
5 Using the graphql-spring-boot-starter library https://github.com/graphql-java-kickstart/graphql-spring-boot, is it possible to secure all requests but allow only the graphql introspection query with authentication? The project has enabled Spring security to use OAuth2 so every request is secured. Thanks for any hint or help. spring-boot spring-security graphql graphql-java Share Improve this question Follow asked Nov 13, 2019 […]