@leosprograms/vf-graphql-holochain
Version:
GraphQL schema bindings for the Holochain implementation of ValueFlows
14 lines (13 loc) • 389 B
TypeScript
/**
* Action queries
*
* @package: HoloREA
* @since: 2019-12-23
*/
import { DNAIdMappings } from '../types.js';
import { Action } from '@leosprograms/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;