OPCFoundation / UA-CloudLibrary

OPC UA Information Model database with a REST and GraphQL interface, as well as user management. The global instance of this (hosted by the OPC Foundation) can be found at https://uacloudlibrary.opcfoundation.org.
Other
37 stars 18 forks source link

infomodel/find does not look at nodeset URIs #174

Closed MarkusHorstmann closed 1 year ago

MarkusHorstmann commented 1 year ago

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
        }
      }
    }
  }
}