Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • By selecting which communities from those available are used. This is part of the URL as described in the query overview documentation TBD LINK.
  • By creating an "input" object at the query top level. This is described in the remainder of this page.

...

  • If any "tags" are specified then only documents with any (case insensitive/exact) matching tags are included in the query (TBD link to document)
  • "typesAndTags" is similar, except you can restrict a set of tags to documents of a given "type"
  • "sources" is the simplest, specify a set of strings, each of which are compared against documents "sourceKey" fields (taken from sources' "key" fields TBD link to source documentation), and then:
    • if "srcInclude": true (default), then only matching documents are included in the query
    • if "srcInclude": false, then only non-matching documents are included in the query
  • If more than one of the above fields is specified, then the results are ORd together

Source information (such as the source key, and tags and types) can be obtained via the TBD link "person/get" API call.

Examples

Code Block
languagejavascript
titleExample 1:
{
	"input": {
		"tags": [ "topic:cyber", "topic:defense" ]
	}
}

...