@leosprograms/vf-graphql-holochain
Version:
GraphQL schema bindings for the Holochain implementation of ValueFlows
15 lines (14 loc) • 551 B
TypeScript
/**
* Top-level queries relating to Fulfillments
*
* @package: HoloREA
* @since: 2019-08-28
*/
import { DNAIdMappings } from '../types.js';
import { Fulfillment, FulfillmentConnection } from '@leosprograms/vf-graphql';
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js';
declare const _default: (dnaConfig: DNAIdMappings, conductorUri: string) => {
fulfillment: (root: any, args: any) => Promise<Fulfillment>;
fulfillments: (root: any, args: PagingParams) => Promise<FulfillmentConnection>;
};
export default _default;