Results 21 issues of joe-re

FIX: https://github.com/prisma-labs/graphqlgen/issues/461, https://github.com/prisma-labs/graphqlgen/issues/470 graphqlgen-json-schema package's schema is missing following properties so I've added these props to it. - iresolvers-augmentation - default-resolvers - delegated-parent-resolvers

refer: https://about.gitlab.com/handbook/business-ops/data-team/platform/sql-style-guide/#use-ctes-common-table-expressions-not-subqueries

enhancement

Probably tree-sitter can be an option? https://github.com/tree-sitter/tree-sitter

enhancement

refer: https://about.gitlab.com/handbook/business-ops/data-team/platform/sql-style-guide/#joins ```sql -- Good FROM source LEFT JOIN other_source ON source.id = other_source.id WHERE ... ``` ```sql -- Bad FROM source LEFT JOIN other_source ON other_source.id = source.id WHERE...

enhancement

refer: https://about.gitlab.com/handbook/business-ops/data-team/platform/sql-style-guide/#joins `JOIN` will work for `INNER JOIN` as default. ```sql -- Good FROM source JOIN other_source ON source.id = other_source.id WHERE ... ``` ```sql -- Bad FROM source LEFT...

enhancement