OPCFoundation/UA-CloudLibrary

infomodel/find does not look at nodeset URIs

MarkusHorstmann opened this issue · 0 comments

For example keyword "http://opcfoundation.org/UA/AMLLibs/" is not found:

Rest:
(https://uacloudlibrary.opcfoundation.org/infomodel/find?keywords=http%3A%2F%2Fopcfoundation.org%2FUA%2FAMLLibs%2F)

GraphQL:

(https://uacloudlibrary.opcfoundation.org/graphql?query={nodeSets(keywords%3A"http%3A%2F%2Fopcfoundation.org%2FUA%2FAMLLibs%2F")%20{totalCount%20nodes{modelUri%20identifier}}})

query MyQuery {
  nodeSets(keywords: "http://opcfoundation.org/UA/AMLLibs/") {
    totalCount
    nodes {
      modelUri
      validationStatus
      validationStatusInfo
      identifier
      requiredModels {
        modelUri
        publicationDate
        version
        availableModel {
          modelUri
          publicationDate
          version
        }
      }
    }
  }
}