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