LightJason - AgentSpeak(L++)
org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative Class Reference

action to run a graphql query by a native graphql query. More...

+ Inheritance diagram for org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative:
+ Collaboration diagram for org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative:

Public Member Functions

 CQueryNative ()
 ctor More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.builtin.web.graphql.IBaseGraphQL
final IFuzzyValue< Boolean > execute (final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
 defines a plan-body operation More...
 
final int minimalArgumentNumber ()
 minimum number of arguments More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
final IPath name ()
 returns the name with path of the action More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IBaseAction
final boolean equals (final Object p_object)
 
final int hashCode ()
 
final String toString ()
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IAction
default Stream< IVariable<?> > variables ()
 returns a stream with all used variables More...
 

Protected Member Functions

final String argumentquery ( @Nonnull final ITerm p_argument)
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.web.graphql.IBaseGraphQL
 IBaseGraphQL (final int p_length)
 ctor More...
 
abstract String argumentquery ( @Nonnull final ITerm p_argument)
 convert argument into graphql query More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.web.IBaseWeb
 IBaseWeb (final int p_length)
 ctor More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
 IBuiltinAction ()
 ctor More...
 
 IBuiltinAction (final int p_length)
 ctor More...
 

Static Private Attributes

static final long serialVersionUID = 569503639553301289L
 serial id More...
 

Additional Inherited Members

- Public Attributes inherited from org.lightjason.agentspeak.action.IAction
long serialVersionUID = -6374480398439703170L
 serial id More...
 
- Static Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.web.graphql.IBaseGraphQL
static Stream< ITermsendquery ( @Nonnull final String p_url, @Nonnull final String p_query) throws IOException
 executes graphql query and returns a stream of terms of the result More...
 
- Static Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.web.IBaseWeb
static ITerm baseliteral ( @Nonnull final Stream< String > p_functor, @Nonnull final Stream< ITerm > p_values)
 creates a literal structure from a stream of string elements, the string stream will be build in a tree structure More...
 
static Stream< ITermflatterm ( @Nullable final Object p_object)
 converts an object into a term stream More...
 
static HttpGet httpget ( @Nonnull final String p_url)
 returns a http-get connection More...
 
static String httpgetexecute ( @Nonnull final String p_url) throws IOException
 execute http-get request More...
 
static String httpgetexecute ( @Nonnull final HttpGet p_get) throws IOException
 execute http-get request More...
 
static HttpPost httppost ( @Nonnull final String p_url)
 returns a http-post connection More...
 
static String httppostexecute ( @Nonnull final HttpPost p_post) throws IOException
 execute http-post request More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.builtin.web.graphql.IBaseGraphQL
static final ObjectMapper JSONMAPPER = new ObjectMapper()
 json mapper More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
static final Logger LOGGER = CCommon.logger( IBuiltinAction.class )
 logger More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.IBaseAction
static final Logger LOGGER = org.lightjason.agentspeak.common.CCommon.logger( IAction.class )
 logger More...
 

Detailed Description

The calls the data of a graphql service and returns a literal based on the query result, the input argument is at the first position the graphql service url, the second argument a string with a grapqhl query structure, and all other arguments the literal functor structure. The action fails on connection and parsing errors.

GQ = web/graphql/querynative( "https://fakerql.com/graphql", '{Product(id: "cjdn6szou00dw25107gcuy114") {id price name}}', "graphql-fake" );
See also
http://graphql.org/

Definition at line 43 of file CQueryNative.java.

Constructor & Destructor Documentation

◆ CQueryNative()

org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative.CQueryNative ( )

Definition at line 53 of file CQueryNative.java.

Member Function Documentation

◆ argumentquery()

final String org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative.argumentquery ( @Nonnull final ITerm  p_argument)
protected

Definition at line 59 of file CQueryNative.java.

Member Data Documentation

◆ serialVersionUID

final long org.lightjason.agentspeak.action.builtin.web.graphql.CQueryNative.serialVersionUID = 569503639553301289L
staticprivate

Definition at line 48 of file CQueryNative.java.