* add dependency * rename Input to TextInput and use daisy * base styling * storybook setup with tailwind and theme changer * daisy buttons * add flaticons * text input to daisy * Navbar to daisy * login using daisy * autodocs is... auto * refactor Tabs to separate components * move TextInput * move button * move navbar * remove index * move container * move loader * move tabs to navigation * organize storybook hierarchy * use card * remove storybook dark mode * README * ignore db file * ignore db * prisma scripts * format * blyat * fix redirect
18 lines
350 B
TypeScript
18 lines
350 B
TypeScript
import { builder } from '../builder';
|
|
|
|
builder.queryType({});
|
|
|
|
builder.queryField('version', (t) =>
|
|
t.string({
|
|
description: 'Application version',
|
|
resolve: (parent, args, context) => context.config.app_version,
|
|
})
|
|
);
|
|
|
|
builder.mutationType({});
|
|
|
|
import './Scalars';
|
|
import './posts';
|
|
import './users';
|
|
|
|
export const Schema = builder.toSchema();
|