GithubHelp home page GithubHelp logo

blog-portfolio's Introduction

Hey ๐Ÿ‘‹

let me introduce myself, my name is Jovi, I'd describe myself as a full stack developer. I'm currently employed as a Software Engineer at Stellate.

I'm passionate about Open-source and help maintain several projects

Formerly employed at

Some information about me

  • ๐Ÿ”ญ Iโ€™m currently working on The above OSS projects
  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on performance-related and GraphQL projects
  • ๐Ÿ’ฌ Ask me about front-end frameworks or GraphQL - always open for conversations on Twitter!
  • ๐Ÿ“ซ How to reach me: Twitter Mastodon
  • ๐Ÿ˜„ Pronouns: he/him

blog-portfolio's People

Contributors

dependabot[bot] avatar developit avatar jovidecroock avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

blog-portfolio's Issues

Codegen add __typename recipe

Regarding the following:

A lot of GraphQL clients use `__typename` for their caches, the issue here being that we have to add `__typename` to each
`SelectionSet` we do in a document (or we add an extra plugin to `graphql-codegen` to do this for us.), otherwise our
client-side cache could start missbehaving, in Relay this is done for us by the optimising compiler.

It would be nice to add the following tod document it ๐Ÿ˜‡

import { Kind, visit } from 'graphql';
import { Types } from '@graphql-codegen/plugin-helpers';

export const addTypenameDocumentTransform: Types.DocumentTransformObject = {
  transform({ documents }) {
    return documents.map(document => ({
      ...document,
      document: document.document
        ? visit(document.document, {
            SelectionSet(node) {
              if (
                !node.selections.find(
                  selection => selection.kind === 'Field' && selection.name.value === '__typename',
                )
              ) {
                return {
                  ...node,
                  selections: [
                    {
                      kind: Kind.FIELD,
                      name: {
                        kind: Kind.NAME,
                        value: '__typename',
                      },
                    },
                    ...node.selections,
                  ],
                };
              }
            },
          })
        : undefined,
    }));
  },
};
import { addTypenameDocumentTransform } from './configs/graphql-code-generator/add-typename-document-transform.mjs';
import { CodegenConfig } from "@graphql-codegen/cli";

const config: CodegenConfig = {
  schema: "YOUR_GRAPHQL_ENDPOINT",
  documents: ["./**/*.{ts,tsx}"],
  ignoreNoDocuments: true,
  generates: {
    "./gql/": {
      preset: "client",
      plugins: [],
      presetConfig: {
        persistedDocuments: true,
      },
      documentTransforms: [addTypenameDocumentTransform],
    },
  },
};

export default config;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.