Tag: Angular
-
Track image upload progress in graphql mutation
0 I am running a graphql mutation to upload an image to the server. And operation is done successfully. My only question is that how do i track the progress of image upload on frontend? What percentage of the image size is uploaded? I want to show it in the progressbar in the frontend. Below…
-
How to implement In memory cache from angular front with graphql Queries?
0 I have angular frontend application, we are fetching data with graphql queries using apollo client. We want to implements caching to fetch the data. Only first time we need to query the data and it should stored in cache , while calling the same next time the data should be returned from the cache.…
-
Apollo Graphql with Angular with headers not being passed
0 I need to add headers to my graphql requests with angular, but I didn’t find any way. Headers is added when I use query but not mutate. Also, mutate will works if I didn’t add headers. Here is my code: import { APP_INITIALIZER, NgModule } from ‘@angular/core’; import { AppComponent } from ‘./app.component’; import…
-
GraphQL schema for DynamoDB
0 I’m using DynamoDB and want to create a database with GraphQL API. How do I have to define my schema so my partition key is userID and my sort key is MMYY. Every userID has a lot of MMYY, and every MMYY has entries which are just some data. I want all of these…
-
OrchardCore 1.7.2 workflow with Angular
0 I am using angular and orchard 1.7.2 I have some issue connecting the workflow with Angular I tried every thing and end up with create forms dynamically using GraphQL WorkFlow Http Request Event Contact Message Angular Form Role permissions Angular import { HttpClient, HttpErrorResponse } from ‘@angular/common/http’; import { Component, OnInit } from ‘@angular/core’;…
-
GraphQL usage with REST Endpoints in .Net core 6.0
0 Since I am new to GraphQL, I don’t really know how to call a REST Endpoint and query the fields accordingly. In particular, I want to fetch certain fields from the entire response of a GET API. What I have learnt is GraphQL sends a POST Request. How do I hit the GET endpoints…
-
Technical Lead – EdgeAll – Dallas, TX
EdgeAll Dallas, TX $60+ Accepts corp to corp applications, Contract: Independent, W2 Skills Angular GraphQL MongoDB Job Description Title: Technical Lead Location: Dallas, TX (On-site) Duration: 12+ Months 10 years of experience in Angular, Node JS, MongoDB on Azure. Good to have will be GraphQL experience. Airlines experience will be an added advantage. Create…
-
Front End UI Developer – Ztek Consulting – Durham, NC
Ztek Consulting Durham, NC Depends on Experience Full Time Skills HTML CSS Angular GraphQL JavaScript Job Description Title: Front End UI Developer Location: Durham, NC (Onsite) Responsibilities: Develop and maintain user-friendly web applications using HTML, CSS, Angular, GraphQL, and JavaScript Collaborate closely with UX/UI designers and product managers to implement responsive and visually…
-
Front End UI Developer – Capgemini America, Inc. – Durham, NC
Capgemini America, Inc. Durham, NC $100,000 – $120,000 Full Time Skills HTML5 CSS Angular GraphQL Javascript Job Description Job Title: Front End UI Developer Location: Durham, NC (Onsite) Full Time with benefits Key Responsibilities: Develop and maintain user friendly web applications using HTML CSS Angular GraphQL and JavaScript Collaborate closely with UX UI designers…
-
Make a mutation call in angular (getting “Http failure response for https://localhost:8080/graphql: 400 Bad Request”)
0 Im new to both GraphQL and angular im trying to follow the documentation but not able to make a mutation. Below is the ts file code export const USER_SIGNUP = gql` mutation AddUser($userInput: UserInput) { addUser(userInput: $userInput) { id name email password } } `; import { Component } from ‘@angular/core’; import { Apollo…