UNPKG

@leosprograms/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

15 lines (14 loc) 521 B
/** * Top-level agreement queries * * @package: hREA * @since: 2020-06-16 */ import { DNAIdMappings } from '../types.js'; import { Agreement, AgreementConnection } from '@leosprograms/vf-graphql'; import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'; declare const _default: (dnaConfig: DNAIdMappings, conductorUri: string) => { agreement: (root: any, args: any) => Promise<Agreement>; agreements: (root: any, args: PagingParams) => Promise<AgreementConnection>; }; export default _default;