UNPKG

@valueflows/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

14 lines (13 loc) 387 B
/** * Action queries * * @package: HoloREA * @since: 2019-12-23 */ import { DNAIdMappings } from '../types.js'; import { Action } from '@valueflows/vf-graphql'; declare const _default: (dnaConfig: DNAIdMappings, conductorUri: string) => { action: (root: any, args: any) => Promise<Action>; actions: (root: any, args: any) => Promise<Action[]>; }; export default _default;