UNPKG

@leosprograms/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

17 lines (16 loc) 645 B
/** * Top-level queries relating to Proposal * * @package: HoloREA * @since: 2019-09-12 */ import { DNAIdMappings } from '../types.js'; import { Proposal, ProposalConnection } from '@leosprograms/vf-graphql'; import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'; declare const _default: (dnaConfig: DNAIdMappings, conductorUri: string) => { proposal: (root: any, args: any) => Promise<Proposal>; proposals: (root: any, args: PagingParams) => Promise<ProposalConnection>; requests: (root: any, args: any) => Promise<Proposal>; offers: (root: any, args: any) => Promise<Proposal>; }; export default _default;