Tag: java
-
Java API Developer – eTeam, Inc. – Remote
eTeam, Inc. Remote Depends on Experience Contract: W2, Independent Skills Graphql Java Maven Performance testing Unit testing boot technologies technologies Java Job Description Job Title: Java API Developer Location: Remote Responsibilities 1. Requirement analysis 2. Develop code using Java, Spring boot and Graphql 3. Unit testing 4. Deploy the code to IT/UAT 5. Connect with…
-
Custom GraphQL exceptions
0 I’m trying to create a custom exception when GraphQL throws its owns. The default GraphQL exception response I got is (except for the fillings): { "errors": [ { "message": "Validation error of type WrongType: argument ‘inputLocals.localId’ with value ‘IntValue{value=7777800}’ is not a valid ‘Int’ – Expected value to be in the Integer range but…
-
Technical Writer – Cerebral Technologies – Miami, FL
Cerebral Technologies Miami, FL Depends on Experience Contract: Independent, W2, 12 Month(s) Skills Technical Writer SQL Java GraphQL Python Job Description Role: Technical Writer Work Location: Miami Area, FL Job Description- Ability to write in one or more basic programming language (SQL, Java, GraphQL, Python) Strong analytical skills with ability to understand complex system enterprise…
-
Graphiql not working due of security – Spring for GraphQL
0 I’m trying to use graphiql UI but due of Spring Security, I receive 401. What’s the way to keep /graphql endpoint secured but let /graphiql request to graphql endpoint? I’m on Spring Boot 3.1.4 and Spring For Graphql 1.2.3 If I permitall /graphql it works but I loss security. I Tried also to put…
-
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)…
-
GraphQL field level authorization and nullability
2 We’ve implemented field level authorization in the type resolvers of our server, where a field is only returned with a value if the user has access to it, otherwise "null" is returned (with information in the extensions). The reason why we are not just returning an error (with an empty data response) is that…
-
Micronaut – Exception: manualy registered singleton by adding framework dependecy
0 I currently have an existing Micronaut server project that containing multiple endpoints. I’m considering incorporating an additional GraphQL endpoint and introducing management endpoints for a new feature. However, whenever I add one of these dependencies (micronaut-graphql or micronaut-management), the software fails to start and consistently generates the following error message: ←[36m13:12:08.804←[0;39m ←[1;30m[main]←[0;39m ←[1;31mERROR←[0;39m ←[35mio.micronaut.runtime.Micronaut←[0;39m…
-
How to pass request headers when using java netflix graphql client?
0 I am using com.netflix.graphql.dgs:graphql-dgs-client:4.9.16 along with HttpClient (JDK 17) I am creating graphql client using below. GraphQLCLient graphQLClient = GraphQLClient.createCustom( host-url, requestExecutor::exec); And my request executor is based on HttpClient and it’s implementation is roughly as below – import com.netflix.graphql.dgs.client.HttpResponse; import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpClient.Version; import java.net.http.HttpRequest; import java.net.http.HttpRequest.BodyPublishers; import java.util.List; import java.util.Map;…
-
Dynamic Generation of GraphQL Client Sample query , Mutation ,..etc from the URL Endpoint Schema
0 I need to generate a dynamic Query,Mutation..etc.. for GraphQl client with the GraphQL Schema from URL Endpoint in java, GraphQl Query Generator Please refer the above image . There is GraphQL Query Generator (Chrome extension) which i need all the functionality in java, { "data": { "__schema": { "queryType": { "name": "Query" }, "mutationType":…
-
Dynamic generate GraphQL schema supports
11 Is it possible to dynamically create a GraphQL schema ? We store the data in mongoDB and there is a possibility of new fields getting added. We do not want any code change to happen for this newly added field in the mongoDB document. Is there any way we can generate the schema dynamically…