Tag: graphql
-
How to handle security (authn/authz) with DGS Subscriptions and spring security?
0 I’m mirroring a question asked directly on GitHub here. I’m up to the point where if I authorize("/subscriptions",permitAll) while configuring my SecurityWebFilterChain then I can successfully use my subscription queries. However, that removes all the security. I would have liked to do: authorize("/subscriptions",hasAuthority("access")) Anyway, now I need to make sur that the user is…
-
How can I access the data I fetched with graphql?
0 So I have Nuxt 3, and Strapi with graphql. I want to get the data from Strapi via Graphql This works for the full data: <template> <div> <p> {{ data }}</p> </div> </template> <script setup lang="ts"> const query = gql` query headerPicMediaUrl { productsMedias{ data{ id attributes{ HeaderPic1{data{attributes{url}}} } } } } ` const…
-
Shopify GraphQL Mutation Doesn’t Work In CURL Or Postman But Does With GraphiQL App
0 When I’m using the following mutation in GraphiQL App it works perfectly but when I run it using Postman or CURL it just doesn’t work. This issue is happening for Function related mutations only. The Mutation: mutation { discountAutomaticAppCreate( automaticAppDiscount: { title: "Volume Discount Created from APP 011", functionId: "9d8aas8-78asd-8d7sa-86f0-dg789asdfa9sd", startsAt: "2023-09-19T00:00:00"} ) {…
-
Django Graphql Auth mutations failing with error unexpected keyword argument ‘refresh_token’
0 In my project I am using below libraries for django graphql authentication, django-graphql-jwt django-graphql-auth PyJWT I am running below mutation and some other similar mutations. mutation Register { register( email: "[email protected]" password1: "Abcd@2023" password2: "Abcd@2023" ) { success errors refreshToken token } } From yesterday suddenly all mutations started failing with error, { "errors":…
-
Need GraphQL Architect / GraphQL Consultant (Remote) – Spar Information Systems – Remote
Spar Information Systems Remote Contract: W2, Independent, 12+ Month(s) Skills API ElasticSearch GraphQL Kibana Job Description Hello Everyone, Hope you are doing good. One of our client is looking for GraphQL Architect / GraphQL Consultant, please sahre your updated resume to Role: GraphQL Architect / GraphQL Consultant Location: Remote Duration: 6+ Months with possibility of…
-
Technical Writer – Apolis – Miami, FL
Apolis Miami, FL Depends on Experience Accepts corp to corp applications, Contract: W2, 12 Month(s) No Travel Required Skills Technical Writer sql java python GraphQL salesforce Job Description Role: Technical Writer Location: Miami Area, FL Duration: 12+ months Job Description: Ability to write in one or more basic programming language (SQL, Java, GraphQL, Python)…
-
React Native lead with Postgres exp – New York Technology Partners – Remote
New York Technology Partners Remote Depends on Experience Contract: Independent, W2 Skills React Native GraphQL Json AP Reactnative Postgres PostgreSQL Job Description Required skills: Reactjs, Nodejs, Postgres, Next js, Java, JavaScript, Jenkins, Git, Microservices, SSO, security, Postgres, GraphQL/Json API, Excellent Debugging skill. React Native, GraphQL/Json AP Description:- Deliver Innovative technology solutions to complex…
-
Software Engineer – Reveille Technologies – Remote
Reveille Technologies Remote Depends on Experience Contract: W2, 6 Month(s) Skills Mainframe GraphQL react Typescript Job Description Hi, We have an Urgent opening for the Senior Informatica/Mainframe Software Engineer – Remote Job Title : Senior Informatica/Mainframe Software Engineer Job Location : Remote Mode of hiring : Contract (W2) Job Description: …
-
type-graphql doesn’t work when passing argument
0 I’m developing an API using apollo-server and type-graphql, but when I try to send an Input througth a Query or a Mutation arguments I don’t know what is happenning but I cannot get the data UserResolver.ts import { Arg, Query, Resolver } from ‘type-graphql’ import { UserModel } from ‘../dtos/models/UserModel’ import { CreateUserInput }…