Tag: Node.Js
-
Senior Software Engineer (Ruby / GraphQL / React) – Jobot – Boston, MA
Jobot Boston, MA $90,000 – $150,000 per year Full Time Skills SaaS Bridging React.js Node.js Java Analytical skill Leadership SOLID Usability Computer science Job Description 100% Remote / Greenfield development / Microservices / SaaS platform for youth sports! This Jobot Job is hosted by: Craig RosecransAre you a fit? Easy Apply now by clicking the…
-
Shopify App Image File Upload Through GraphQL API – Processing Error
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…
-
Java Fullstack Developer (with Informatica and GraphQL) – Need Only Local of MI – Centraprise Corp – Auburn Hills, MI
Centraprise Corp Auburn Hills, MI $DOE Contract: W2, Corp-To-Corp, Independent Skills Angular Node.js Microservices Java Development React.JS Informatica Powercentre Job Description Java Fullstack Developer (with Informatica and GraphQL) Auburn Hills, MI (Day 1 Onsite) Long Term Contract Job Description: Required Skills: React, JavaScript, DOM, Javascript Object Model, React.JS, Node JS, GraphQL, Micro frontend architecture MUST…
-
Real-time Message Deletion Subscription Returns Null
0 I am currently working on implementing real-time message deletion in my GraphQL application. I have set up the necessary mutation and subscription resolvers, but I am encountering an issue where the messageDeleted subscription is returning null although message is delete for me but I want this is seen other user on the frontend when…
-
How to upload single / multiple images using Apollo-server-express and mongodb?
0 Image upload using Apollo server and mongodb database . If any body has solution or reference, please let me know. Thank you node.js mongodb express graphql apollo-server Share Follow asked Jul 17 at 13:48 DigenDigen 5999 bronze badges Add a comment | 1 Answer 1 Sorted by: Reset to default Highest score (default) Trending…
-
Is there a way to search through job postings with new Upwork GraphQL API?
1 Since Upwork is deprecating REST API support on December 15, I’ve started refactoring my application to support new GraphQL API. My main REST API requests are: Search Jobs: GET /api/profiles/v2/search/jobs.{format} Get Job Profile: GET /api/profiles/v1/jobs/{job_key}.{format} The problem is, GraphQL API Docs does not seem to have similar requests in "Search" directory. Only thing I…
-
Shopify Payment app graphQL endpoint authentication
-1 I am trying to create an offsite shopify payment app. Overall the authentication on GraphQL requests seems kinda confusing to me. Should there be any authentication token for graphQL request like PaymentSessionResolve. This question might not be appropriate for stackoverflow but I am kinda stuck. javascript node.js graphql shopify shopify-app Share Follow asked 1…
-
Unable to install express-graphql
9 I’m trying to install express-graphql but getting this error. Please, help! npm install –save express-graphql npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: [email protected] npm ERR! Found: [email protected] npm ERR! node_modules/graphql npm ERR! graphql@"^16.2.0" from the root project npm ERR! npm ERR! Could not…
-
How to create Resolvers for this apollo graphql server
-1 How to Create Resolvers for Apollo GraphQL Server using the Given Output and Type Definitions { "data": { "department": [ { "id": "123", "booksubdepartment": [ { "id": "111", "departmentID": "123", "books": [ { "subdepartmentId":"111", "bookTitle": "Book One on sub department 111" }, { "subdepartmentId":"111", "bookTitle": "Book Two on sub department 111" } ] },…
-
How to create a commit, on newly created empty repository using GitHub Graphql API
0 GraphQL Query I used: mutation CreateGitProfileRepo($name: String!, $description: String!, $homepageUrl: URI!) { createRepository(input: {name: $name, visibility: PUBLIC, description: $description, homepageUrl: $homepageUrl}) { repository { ref(qualifiedName: "main") { repository { id } } } } } I’m getting ref ID as null, as it is an empty repo. Now I’m creating a commit using: mutation…