Tag: mongodb
-
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. http://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 […]