Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add graphql implementation for post comments (#2741)
* updated dependencies * update drizzle schema updated drizzle schema to incorporate new changes * add pothos plugin for implementing relay graphql connections * add some common graphql connection utitlies * add graphql implementation for organization read/write functionalities added graphql mutation resolvers for creating, reading, updating and deleting an organization * fix some stuff in user graphql implementation extracted out `updatedAt` field as its own resolver for better access control * fix user tests according to new changes * update gql tada introspection result * delete tag folders table tags can be used as folders for tags, so there is no requirement for a seperate table for managing tag folders * add utility function added a utility function that takes in a javascript object and a list of key paths within that object as arguments and outputs all paths among those key paths that correspond to a non-undefined value * add graphql implementation for organization membership added graphql implementation for handling read/write operations for an organization membership added graphql implementation for handling read operations for relations between organization membership, organization and user * add utility for checking if a value is null or undefined * add graphql implementation for tag added graphql implementation for handling read/write operations for a tag added graphql implementation for handling read operations for relations between tag and organization * add advertisement graphql implementation added graphql implementation for handling read/write operations for an advertisement added graphql implementation for handling read operations for relations between advertisement and organization * fixed some error messages * update drizzle schema * add post graphql implementation added graphql implementation for handling read/write operations for a post added graphql implementation for handling read operations for relations between post and organization * fixed imports for some modules * update node, pnpm version and dependencies * add post vote graphql implementation added graphql implementation for handling read/write operations for a post vote added graphql implementation for handling read operations for relations between post and post voters * update drizzle schema * add comment graphql implementation added graphql implementation for handling read/write operations for a post comment added graphql implementation for handling read operations for relations between comment and post * add comment vote graphql implementation added graphql implementation for handling read/write operations for a comment vote added graphql implementation for handling read operations for relations between comment and comment voters
- Loading branch information