GraphQL Codegenでenumをオブジェクトリテラルで生成する
graphql-codegen のenumsAsConst設定なる
// オブジェクトリテラル
const Position = {
Top: 0,
Right: 1,
Bottom: 2,
Left: 3,
} as const;
client preset は
enumsAsType
enumsAsConstのenumsAsTypeが
