Tag: graphql
-
Lead React Native Developer – Global Soft Systems – Remote
Global Soft Systems Remote Full Time, Contract: Independent, W2, 6+ month(s) Skills React Node Redux TypeScript GraphQL React Native Job Description Lead React Native Developer CTH Remote but if converted they must be in Bentonville, AR Project Scope: Me@Campus Again Lead Dev / one lower than a an Architect. Built off the back of an…
-
Problem with setTimeout when sending Graphql mutation in React
1 I had this problem. I need to divide the values from one form into two parts and send them to one address. graphql mutation calc($applicationRecipientsFilter: ApplicationRecipientsFilterInput) { create(applicationRecipientsFilter: $applicationRecipientsFilter) { id city { id name } applicationType recipients } } hooks const { mutate } = useMutation(calc); const addNewNotification = useCallback( async (args) =>…
-
How do I pass controller without ‘invalid date error’ error
0 I’m trying to pass the date from the datepicker and timepicker but it always gives an invalid date error I already tried .year .month .day .hour. minute. DateTime.parse doesnt wor enter image description here I already tried .year .month .day .hour. .minute parse, toString nothing work import ‘package:datetime_picker_formfield_new/datetime_picker_formfield.dart’; import ‘package:flutter/material.dart’; import ‘package:get/get.dart’; import ‘package:horario/features/Date/presentation/controller/date_controller.dart’;…
-
Python requests & Graphql API: How to use variables?
0 I am working on creating users on my wiki.js using graphql api and python’s request package. I am able to create a user normally(hard coded) but I want to use variables. Here is the code I tried: # we have imported the requests module import requests # defined a URL variable that we will…
-
GitLab: How to query history commits of certain branch with GraphQL
0 I’m trying to query the commit history of a project’s repository of certain branch with GraphQL, is this possible? And there is no related samples I can find in Gitlab docs, or did I have to use the REST API which is much more viable. I’ll be appreciated if anyone have any ideas about…
-
How to avoid specifying field name in Octokit GraphQL
1 Example query: mutation prrt($input: AddPullRequestReviewThreadInput!) { addPullRequestReviewThread(input: $input) { thread { id } } } Using Octokit, I have to type like this: const mutateFn = graphql<{ addPullRequestReviewThread: AddPullRequestReviewThreadPayload; }>; const response = await mutateFn(mutation, { input, headers }); The addPullRequestReviewThread: part is quite long. Can this be automated/inferred somehow? I’d like to just…
-
GraphQL Client for C++ and .NET
7 Is there an GraphQL client library available for C++ (Windows and Linux) and .NET? From Apollo website I can only see clients for React, Vue.js, Angular, Android, iOS, Ember and Meteor. If there is an Apollo client for C++ and .NET, where is it located ? If not, what should be used ? graphql…
-
Graphql & requests package py: How to use variables in the query body
-2 I am using requests package from python to use graphql api to create users in my wiki.js I have the following code where I want to use variables for email and name fields. They work when hard coded but I need it to work with variables. Code: # we have imported the requests module…