0

我正在尝试使用 VersionOne rest-1.v1/Data端点来查找9.00.00.01特定字段中包含字符串的所有故事。这是查询(为便于阅读而添加了换行符):

<Server Base URI>/rest-1.v1/Data/Story
    ?sel=Number,Custom_FixedinVersions
    &find=9.00.00.01
    &findin=Custom_FixedinVersions

这将返回未9.00.00.01在查询字段中显示字符串的结果。例如:

<Asset href="/rest-1.v1/Data/Story/60560" id="Story:60560">
    <Attribute name="Number">B-06248</Attribute>
    <Attribute name="Custom_FixedinVersions">8.10.00.00-01</Attribute>
</Asset>

我的查询有什么问题?

4

1 回答 1

0

rest-1.v1 API的功能使用与高级搜索find功能相同的底层功能。因此,它与 VersionOne 应用程序具有相同的限制。即,标点符号被视为单字符术语并从搜索查询中排除。因此,上述术语被视为搜索引擎匹配任何空格分隔值的位置。因此,同时匹配和术语。9.00.00.019 00 00 018.10.00.00-010001

于 2013-11-26T15:44:34.420 回答