Tag: graphql
-
Fullstack GraphQL (USA / Mountain Time)
Actions Panel Learn to build modern APIs like Facebook and Netflix in our Fullstack GraphQL workshop. By ChilliCream IncFollow Date and time October 10 · 8am – October 11 · 4pm PDT Location Online Refund Policy Contact the organizer to request a refund.Eventbrite's fee is nonrefundable. Agenda Day 1Day 2 9:00 AM – 10:30 AM […]
-
Python Developer — 12+ Months Contract — Remote – Lorven Technologies, Inc. – Remote
Lorven Technologies, Inc. Remote $DOE Full Time, Accepts corp to corp applications, Contract: W2, Month Contract Skills NOSQL Python GraphQL Job Description Role: Python Developer Location: Remote (CST/EST) Duration: 1+ Year Contract Top Skill sets: Senior Level Python Developer (8-10+) GraphQL is a must. NoSQL databases Client Note: Will be working with UI but not […]
-
Python Developer – GraphQL, Python – Only W2 – FocuzMindz – Remote
FocuzMindz Remote Depends on Experience Contract: W2, 12 Month(s) No Travel Required Skills GraphQL Python Job Description Proficiency in GraphQL Proficiency in Python http://www.dice.com/job-detail/6bd3f024-e9cf-49b4-abbd-b7232418d4b9
-
How does GraphQl handle conflicting operation names?
0 Working on a large codebase, I came across 2 exposed graphql mutations with the same name. To my understanding, these should give an error when generating the graphql schema, yet the site is perfectly functional. Both these mutations have the same method arguments as well. I want to know what are the rules on […]
-
GraphQL Server unreachable
0 I am trying to create serverless azure function with graphql in visualstudio code. I am following the below tutorial Build Serverless API with GraphQL and Azure— Part I After starting the application, i see the error attached in the browser. unable to execute query because of the error. Tried with the embed sandbox on […]
-
Curl graphql query to insert with html character
0 I need insert in Shopify from CURL with graphql a html traslation but not accept "<" character I try with < < but nothing.. {"query": "mutation CreateTranslation($id: ID!, $translations: [TranslationInput!]!) { translationsRegister(resourceId: $id, translations: $translations) { userErrors {message field} translations {key value locale} } }","variables": {"id": "gid://shopify/Product/myid","translations": [{"key": "body_html","value": "<p>La Camicia da Uomo in […]
-
Trying to run Login graphql query(Magento 2) in jmeter with graphql http request but request is not being sent properly and results in 500
0 Below is the query I am trying to run to generate customer token. Can somebody help me out? Query runs successfully in Postman. mutation Login($email: String!, $password: String!) { generateCustomerToken(email: $email, password: $password) { token customer { …CustomerFragment } } } fragment CustomerFragment on Customer { email firstname lastname mobilenumber user_source pushnotification group_id is_subscribed […]
-
How to check to which service is being queried by Apollo Gateway
0 I have two services in my Apollo Gateway configuration. I can only connect to one of them with a VPN. I would like to check this using the X-Forwarded-For header. public makeGateway = (): ApolloGateway => { const gateway = new ApolloGateway({ debug: this.config.DEBUG, supergraphSdl: new IntrospectAndCompose({ subgraphs: this.config.services, }), buildService: this.buildService, serviceHealthCheck: true, […]
-
How can I getting only the number id of the product in shopify using graphql and laravel app
0 This is my routes Route::get(‘/carts/{numericProductID}’, ‘AppHttpControllersShopifyController@showProductDetails’) ->name(‘showProductDetails’); This is the link to direct to other page to show/fetch the details of the selected product <a href="{{ route(‘showProductDetails’, [‘numericProductID’ => $product[‘node’][‘id’]]) }}">View Details</a> php html laravel graphql shopify Share Follow asked 33 mins ago Ruel A AlmoniaRuel A Almonia 111 bronze badge 1 What is […]
-
How to specify auto-generated types by Prisma for the code-first Graphql resolver on NestJS?
0 Suppose I want to execute a many-to-many mutation like below, which is cited from prisma.io: const createCategory = await prisma.post.create({ data: { title: ‘How to be Bob’, categories: { create: [ { assignedBy: ‘Bob’, assignedAt: new Date(), category: { create: { name: ‘New category’, }, }, }, ], }, }, }) To implement Graphql […]