Tag: graphql
-
Flutter Data Model Doesn’t Update When Amplify Pulled
0 I’m using the AWS GraphQL database for my Flutter application. When I create my database on the AWS panel and type ‘amplify pull’ on the Flutter project terminal, there is no problem initially. All data models are created automatically successfully. The problem is, that I have created new data models on GraphQL and when…
-
I need some support with graphql Apis I am just able to get a post request and not a get request
-2 Certainly! Here’s a detailed description of your problem with the GraphQL endpoint, formatted for a Stack Overflow question: Title: Unable to Make GET Request to GraphQL Endpoint Using FlutterFlow Body: I am building an app using FlutterFlow and am trying to fetch data from a GraphQL endpoint (https://ra.co/graphql). While I can successfully make a…
-
Shopify GraphQL using fetch API, returns empty json, no errors
1 Trying to just fetch the name of my store in a React component using the Fetch API and GraphQL endpoint of Shopify. I created a Shopify store, gave permissions to the Storefront API and crafted this in my componentDidMount() section of my react component. let query = ‘{ shop { name } }’; console.log(JSON.stringify(query));…
-
What techniques have you used to manage the complexity of your GraphQL schema? [closed]
-3 Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations. Closed…
-
Not able to Configure GraphQL with Angular. NodeJS 14
0 I have been trying to configure my angular project with graphql, angular-apollo but it’s not happening. My angular project is using NodeJS 14 Version error PS C:UsersadminDocumentsworkspacetechwarelab-websiteTechwareLab-Website> ng serve Compiling @nguniversal/express-engine/tokens : es2015 as esm2015 Compiling ngx-captcha : es2015 as esm2015 Compiling ngx-owl-carousel-o : es2015 as esm2015 Compiling @nguniversal/express-engine : es2015 as esm2015 chunk…
-
Customize /graphql endpoint to serve different schemas
0 In Hasura, is there a way to customise the /graphql endpoint so that for customer 1, it serves a schema at /graphql/customer1 and serves another at /graphql/customer2 for customer 2? Currently, all my schemas are displayed in /graphql endpoint and it creates clutter and also makes the data visible to all when used with…
-
Is GraphQL API suitable for supermarket POS(Point-Of-Sales) application?
0 I am developing a smart POS application that serves as an integrated software solution that facilitates efficient and modern point-of-sale operations for supermarkets. This system has the following functionalities. Sales processing and transaction management Inventory management Employee management Report and Analytics E-commerce integration Multi-Store support Customer management I chose ReactJS for the front-end, Springboot…
-
Error when installing apollo/client in react-native app
0 I am building a react native cli app and I want to use @apollo/client to reach the graphql server. But when running these commands npm install @apollo/client graphql I get the following error. npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: [email protected] npm ERR! Found: [email protected] npm ERR! node_modules/graphql npm…
-
Discount Codes By A Customer ID Or Email using Graphql
0 I am trying to select discount codes assigned to a logged-in user using admin graphql API. I am able to select all discount codes but I am not able to filter them by customer ID or customer email address. Here is my GQL. Can you guide me on how can limit the results to…
-
Golang,gorm, postgress: invalid input is inserted
0 when i perform request using https://localhost:8080/graphql end point I cant create user using mutation **the whole code:** package main import ( "fmt" "log" "net/http" "time" "github.com/graphql-go/graphql" "github.com/graphql-go/handler" "github.com/kaleabbyh/foodrecipie/config" _ "github.com/lib/pq" ) ** Note: the table users is succesfullly migrated using separate migration code having ‘User’ attributes** type User struct { ID int `gorm:"type:int;primary_key;identity(100,1)"` Name…