#[no_mangle]
pub extern "C" fn annis_cs_node_descriptions(
    ptr: *const CorpusStorage,
    query: *const c_char,
    query_language: QueryLanguage,
    err: *mut *mut ErrorList
) -> *mut Vec<QueryAttributeDescription>
Expand description

Parses a queryand return a list of descriptions for its nodes.

  • ptr - The corpus storage object.
  • query - The query to be analyzed.
  • query_language - The query language of the query (e.g. AQL).
  • err - Pointer to a list of errors. If any error occured, this list will be non-empty.