Tag: graphql
-
Android Developer – Raas Infotek LLC – Remote
Raas Infotek LLC Remote Depends on Experience Contract: W2 Skills JSON GraphQL Kotlin eCommerce Job Description Android Developer Job Description: Strong Android mobile app developer to perform both engineering and maintenance tasks Responsibilities Develop new features and user interfaces from wireframe models together with unit and integration tests Ensure solid application performance and excellent…
-
NodeJS Engineer Local to California only – EdgeAll – Sunnyvale, CA
EdgeAll Sunnyvale, CA $60 – $65 Accepts corp to corp applications, Contract: IndependentW2, 12 Month(s) No Travel Required Skills GraphQL nodeJS Job Description Job Description : REQUIRED SKILLS: – Bachelor’s/Master’s degree in computer science, information technology, engineering, or anything specific that you prefer – At least 3-5+ years of experience working with complex data systems –…
-
Software Engineer (NodeJS, NoSql, GraphQL) – Only W2 – StratG Inc – Sunnyvale, CA
StratG Inc Sunnyvale, CA $40+ Contract: W2 Skills software engineer nodejs GraphQL nosql API Cassandra MySQL MangoDB NoSql CRUD kafka Job Description Description: The Software Engineer position will be responsible for handson development as well as lead the development of Next Generation Enterprise solutions for Global ecommerce. SE will be responsible for application development in…
-
How to get only selected fields on graphql using javascript
-1 I need a basic query to take all users from graphql but only with selected fields such as email, name etc. I couldn’t figure out how it works, aws doc gives example about filtering but it uses id to filter. export const getUsers = async () => { try { const { data }…
-
Need Technical Architect-Graphql, Java – Spar Information Systems – Remote
Spar Information Systems Remote Full Time, Contract: W2, 12 Work from home Skills GraphQL Job Description Role: Technical Architect Location: Remote Duration: 3-6 Months with possibility of further extension Job description: Design & Develop a solution that can Federate multiple applications we are looking for a Sr. GraphQL candidate with Java background someone who has…
-
Voyager showing non deprecated fields as deprecated
0 https://github.com/graphql-kit/graphql-voyager/discussions/368 https://github.com/graphql/graphiql/discussions/3423 Hi all, I am not sure if this is the right place or audience to post this. I tried the github voyager repo discussion, but I did not get any feedback there. Our team members noticed that lately when we run a query on voyager we are seeing deprecate fields for fields…
-
Typescript and Graphql Fragments
0 I use codegen to generate TS types and I use Apollo client to send queries to server. when I generate code for the following example, Typescript dosen’t know that people has firstName and lastName fields, It only knows that avatar field exists. If I remove fragment and move fields directly to query all fields…
-
Gatsby Image data not coming through
0 I’m getting image data from WP passed into Gatsby. I want to use Gatsby Image to improve performance. Here’s my GraphQL query: But then when i console that data, I just get sourceUrl and altText. I’m trying to pass my image from line 11 into the GatsbyImage component on line 22, but it’s not…
-
HotChocolate v13 GraphQL: how to get rid of “Input” suffix?
0 I’m building GraphQL API with C# and HotChocolate. The library adds "Input" suffix to type names which used as input arguments. I want to get rid of this behavior. And no, we’re not going to discuss why do I want this, and why it is a good practice (even if you really want to,…
-
.Net Core and GraphQL running query
0 This graphQL query runs in Postman, but is not returning data in my program. Any ideas? public static async Task RunAsync() { // Update port # in the following line. client.BaseAddress = new Uri(ServerUrl); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add( new MediaTypeWithQualityHeaderValue("application/json")); // GET: Get data from Server var productRequest = new GraphQLRequest { Query = @"{ products…