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