Tag: Node.Js
-
Backend Developer with Node js, Golang, GraphQL || Sunnyvale, CA(Hybrid – Need locals only) || Must have linkedin & 9+ years of exp. – Nestortechnologies Inc – Sunnyvale, CA
Nestortechnologies Inc Sunnyvale, CA Depends on Experience Accepts corp to corp applications, Contract: IndependentW2, 12 Month(s) Skills Golang GraphQL MongoDB NoSQL Node . js design patterns unit testing Job Description Backend Developer with Node js + Golang + GraphQLSunnyvale, CA (Hybrid – Need locals only)Must have linkedin & 9+ years of exp. Mandatory Skill :(Node js,…
-
Platform Engineer – Noblesoft Solutions Inc. – Remote
Noblesoft Solutions Inc. Remote Depends on Experience Contract: W2 Skills Platform Design Platform Implementation GraphQL Node.Js TypeScript AWS Job Description Job Description: • Minimum Years of Experience: Twelve(12) years of professional experience in the Technology field• 10 years of software/platform design and implementation experience• Excellent communication skills.• Additional Requirements (i.e. % of travel time, etc.):…
-
Inquiry about Sentry’s Capabilities for Detecting N+1 Query Problems in React GraphQL Node.js Project
0 I’m reaching out to inquire about Sentry’s capabilities in detecting specific performance issues. My technology stack includes React for the front end, GraphQL for the API layer, Node.js for server-side logic, and PostgreSQL as the database management system. Here are the specific areas we are looking for assistance with: Frontend Issues in Real Time…
-
“Column `distinctAlias.post_id` does not exist” Typeorm
0 I have a posts resolver which uses this logic to return posts: const qb = Post.createQueryBuilder(‘post’) .select([‘post.id AS id’, ‘post.createdAt AS id’]) .addSelect( "json_build_object(‘id’, user.id, ‘username’, user.username, ’email’, user.email, ‘createdAt’, user.createdAt, ‘updatedAt’, user.updatedAt)", ‘creator’ ) if (req.session.userId) qb.addSelect((qb) => { return qb .subQuery() .select(‘updoot.value’) .from(Updoot, ‘updoot’) .where(‘"userId" = :userId AND "postId" = post.id’, {…
-
Golang Developer – Info Dinamica Inc – Sunnyvale, CA
Info Dinamica Inc Sunnyvale, CA $60 – $65 Contract: W2, 6 Month(s) Skills Golang Node.js GraphQL Job Description Required Skills: Backend Developer with hands on experience with Golang and Node.js Experience with GraphQL is Must. Financial industry experience is preferred. https://www.dice.com/job-detail/009bc7af-528c-4da9-834c-c073e4c97d7e
-
Remote Node.JS Developer opening – ClearBridge Technology Group – Remote
ClearBridge Technology Group Remote Depends on Experience Contract: W2, Independent Skills GraphQL Node . JS PostgreSQL Job Description Our client, a large advertising firm, is looking to hire 2 Senior Backend developers for a 5 month remote contracts supporting multiple projects. The developers will be responsible for the development of core and critical features for…
-
Protect GraphQl queries and mutations with middleware
0 I’m developing an express app and experimenting with graphql. I’ve started to not using old endpoints I made before. The problem is some of my old endpoints protected by middlewares like: router.get( "/", [auth.verifyToken, auth.checkRole(["role1", "role2"])], someController.getAllThings ); So my question is how to protect queries and mutations with middlewares? node.js express graphql Share…
-
Redis-om EntityId: how to return the result of a search
0 I use redis-om with nodejs, typescript and graphql I save a record in redis with this code let vote = await voteRepository.save({ voterID, date, certified }); the type of ‘vote’ is ‘Entity’ but I want to send back to the client an object of type Vote: type Vote { voterID: String! date: String! certified:…
-
http-proxy-middleware and graphql
0 I have a simple graphql-server: const typeDefs = gql` type Message { id: ID! text: String! } type Query { getMessage: Message } `; const resolvers = { Query: { getMessage: () => { return { id: ‘1’, text: ‘Hello, World!’ }; } } }; async function startServer() { const server = new ApolloServer({…