Tag: graphql
-
Gorm postgress DB database display error: bigint type for the user id
0 Based on the schema below, when I try to implement the function, it displays an error as it’s not a bigint type for the user id, but the user id in the user struct generated by gqlgen is a string. My schema: type Query { getUser(id: ID!): Users! listUsers: [Users!]! } type Mutation {…
-
GraphQL Query to Get Data Two Different Tables
0 I have two tables a and b. a have id and age fields. b have id, pid, and name fields. b.pid has a foreign key relationship with a.id. How can I get age and name from these tables using a GraphQL query? Tables are created using SQL. sql graphql graphql-js Share Improve this question…
-
Laravel Lighthouse Graphiql Introspection query failing to fetch
0 I have a laravel graphql backend using Laravel Ligthouse, I’m using laravel Sanctum for authentication, the introspection query always fails to fetch with the following error on Graphiql: { "errors": [ { "message": "Failed to fetch", "stack": "TypeError: Failed to fetchn at https://unpkg.com/graphiql/graphiql.min.js:71200:22n at Generator.next (<anonymous>)n at https://unpkg.com/graphiql/graphiql.min.js:71119:67n at new Promise (<anonymous>)n at __webpack_modules__…/../graphiql-toolkit/esm/create-fetcher/lib.js.__awaiter…
-
graphql query to get two differe tables
0 i have two tables a and b . a have id and age fields. b have id,pid and name field. b.pid have foreign key relationship with a.id . how can i get age and name from these tables using graphiql query? tables are created using sql. sql graphql graphql-js Share Improve this question Follow…
-
Dataloader is using only recent context
0 I have defined a custom context as below @Component public class MyContextBuilder implements DgsCustomContextBuilder<MyContexttBuilder.MyContext> { @Override public MyContext build() { return new MyContext(); } public static class MyContext { private String customState = "Custom CID!"; public String getCustomState() { return customState; } public void setCustomState(String state) { customState = state; } } } Datafetcher…
-
Android Developer – BayOne Solutions – Sunnyvale, CA
BayOne Solutions Sunnyvale, CA $70 – $75 Contract: Independent, W2, 6 Month(s) Work from home Skills Kotlin RestAPI GraphQL Job Description Job Title- Android Developer (Job ID: Job ID- WECJP00027285) Job Location- Sunnyvale, CA (Hybrid role) Duration: 6+ months You can work on C2C as well. Client Notes: Android Developer with Kotlin Rest API, GraphQL…
-
Front End UI Developer – Ztek Consulting – Durham, NC
Ztek Consulting Durham, NC Depends on Experience Full Time Skills HTML CSS Angular GraphQL JavaScript Job Description Title: Front End UI Developer Location: Durham, NC (Onsite) Responsibilities: Develop and maintain user-friendly web applications using HTML, CSS, Angular, GraphQL, and JavaScript Collaborate closely with UX/UI designers and product managers to implement responsive and visually…
-
Front End Developer with React JS – HMG America – Mechanicsburg, PA
HMG America Mechanicsburg, PA $DOE Accepts corp to corp applications, Contract: W2, Contract/ CTH Skills JavaScript Typescript React.js GraphQL Job Description HMG America LLC is the best Business Solutions focused Information Technology Company with IT consulting and services, software and web development, staff augmentation and other professional services. One of our direct clients is looking…
-
Golang Developer – Node JS, Golang, GraphQL – Keylent – Sunnyvale, CA
Keylent Sunnyvale, CA Depends on Experience Accepts corp to corp applications, Contract: IndependentW2, 12 Month(s) Skills golang nodejs graphql Job Description Position: Golang Developer with Node JS + Golang + GraphQL Location: Sunnyvale, CA– ONSITE https://www.dice.com/job-detail/3d7bcdda-90cb-4320-bc7b-56043d584453
-
in my gorm postgress db, my database display error as it is not bigint type for the user id
0 my gqlgen go app with postgres based on the schema when i try to implement the function it display error as it is not bigint type for the user id, but the user id in the user struct generated by gqlgen are string //my schema type Query { getUser(id: ID!): Users! listUsers: [Users!]! }…