TextSearchQuery

Top  Previous  Next

Description

Representation of a full-text search query.

 

XML Representation

<?xml version="1.0"?>

<Query>

  <Scope>%PropertiesOnly|LabelsOnly|LabelsAndProperties%</Scope>

  <TopicTypeFilter>

    <TopicType>%topic type si%</TopicType>*

  </TopicTypeFilter>

  <PropertyTypeFilter>

    <PropertyType>%property type si%</PropertyType>*

  </PropertyTypeFilter>

  <QueryString>%query string%</QueryString>

  <Skip>%integer%</Skip>

  <Take>%integer%</Take>

</Query>

 

JSON Representation

 

"Scope":2, 

"TopicTypeFilter": array of "%topic type si%", 

"PropertyTypeFilter": array of "%property type si%", 

"QueryString":"%query string%", 

"Skip":%integer%, 

"Take":%integer%

 

 

Notes

For the JSON representation, the Scope property may have one of the following values:
 

JSON Scope Property Value

Equivalent XML Scope Element Value

0

LabelsAndProperties

1

LabelsOnly

2

PropertiesOnly

 

See Also