@wepublish/api
Version:
API core for we.publish.
18 lines (17 loc) • 732 B
TypeScript
import { GraphQLObjectType, GraphQLInputObjectType } from 'graphql';
import { PeerProfile } from '../db/peer';
import { Context } from '../context';
export declare const GraphQLPeerProfileInput: GraphQLInputObjectType;
export declare const GraphQLPeerProfile: GraphQLObjectType<PeerProfile, Context>;
export declare const GraphQLCreatePeerInput: GraphQLInputObjectType;
export declare const GraphQLUpdatePeerInput: GraphQLInputObjectType;
export declare const GraphQLPeer: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{
id: string;
createdAt: Date;
modifiedAt: Date;
name: string;
slug: string;
hostURL: string;
token: string;
isDisabled: boolean;
}, unknown> & {}, Context>;