Tag: mongodb
-
Software Development Engineer IV – Dimensional Thinking – Berkeley Heights, NJ
Dimensional Thinking Berkeley Heights, NJ $70 – $80 Contract: W2 Skills Software Development MongoDB collaborate unit testing GraphQL Job Description Description: BACK END Responsibilities:Perform requirement analysis by collaborating with business and IT stakeholdersFinalize the project scope for the upcoming phase/sprintConduct the system design in relates to the finalized scopePerform application coding to the agreed…
-
Docker Containers failing to connect to each other – connection refused
1 I have a simple application orchestrated by Docker Compose. It consists of a simple frontend (built using NextJS), a GraphQL API (built with NestJS), and a microservice (built with NestJS). The architecture is as follows: The frontend speaks directly to the GraphQL service. The GraphQL service communicates to the microservice via a NATS server…
-
Data not displayed in mongodb with graphql
0 graphql query running import { gql } from ‘@apollo/client’; const GET_CLIENTS = gql` query getClients { clients { id name email phone } } `; export { GET_CLIENTS }; import {gql} from ‘@apollo/client’; const DELETE_CLIENT = gql` mutation deleteClient($id: ID!) { deleteClient(id:$id) { id name email phone } } `;[enter image description here][1] export…
-
Testing an addUser GraphQL/MongoDB mutation in Cypress
0 I’ve successfully created a Cypress test that creates a new token and user object. The problem is that, since I’ve hard coded the arguments accepted by the addUser mutation, the test only runs once. On a second run, the DB returns an error stating that the user already exists. I have a deleteUser mutation…
-
Sr. Software engineer- Golang – Analytic Era – Mc Lean, VA
Analytic Era Mc Lean, VA Full Time, Part Time, Accepts corp to corp applications, Contract: W2, Independent Skills KUBERNETES DEBUG GRAPHQL DOCKER SOFTWARE ENGINEER MONGODB Job Description Job Title: Sr. Software engineer – Golang Location: Mc Lean, VA Duration: 12 months+ All visas are accepted. Duties: Build new services to meet critical product and business…
-
Hotchocolate Filter by BsonExtraElements
0 We have next entity: public class Product { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; [BsonExtraElements] public Dictionary<string, object?> AdditionalData { get; set; } = new(); } This entity can have many dynamic data that can be stored inside AdditionalData property. Using attribute BsonExtraElements we…
-
Nest Js Graphql Resolve Field with Circular Dependency
0 I have a problem with a circular dependency in a GraphQL model. I’m using Nestjs Graphql MongoDb Mongoose ad I have 3 entities. @ObjectType() @Schema({ timestamps: true }) export class User { @Field(() => ID) _id: string; @Field({ nullable: true }) @Prop({ nullable: true, unique: true }) pseudoDiscord?: string; } @ObjectType() @Schema({ timestamps: true…
-
GraphQL – ASCII Group LLC – Texas City, TX
ASCII Group LLC Texas City, TX $40 – $50 Contract: Corp-To-Corp, Independent, W2 Skills NodeJS MongoDB Job Description MySQL, PostgreSQL, SQL Server, Oracle, DB2, Cassandra, GraphQL, and MongoDB.Should be proficient in working with GraphQL, a modern query language for APIs that enables efficient and flexible data retrieval. https://www.dice.com/job-detail/85876707-a876-402d-a4b6-eea21f820aa6
-
How to upload single / multiple images using Apollo-server-express and mongodb?
0 Image upload using Apollo server and mongodb database . If any body has solution or reference, please let me know. Thank you node.js mongodb express graphql apollo-server Share Follow asked Jul 17 at 13:48 DigenDigen 5999 bronze badges Add a comment | 1 Answer 1 Sorted by: Reset to default Highest score (default) Trending…
-
GraphQL large integer error: Int cannot represent non 32-bit signed integer value
37 I´m trying to store a UNIX timestamp in MongoDB using GraphQL, but it seens that GraphQL has a limit to handle integers. See the mutation below: const addUser = { type: UserType, description: ‘Add an user’, args: { data: { name: ‘data’, type: new GraphQLNonNull(CompanyInputType) } }, resolve(root, params) { params.data.creationTimestamp = Date.now(); const…