Skip to main content
Solved

AQL for Purpose Tags

  • August 9, 2023
  • 2 replies
  • 69 views

Forum|alt.badge.img+4

Easy question: I used to be able to use this AQL search to look up tables with specific purpose tags, but it’s no longer working with the upgrade to 14.3. Does anyone have a suggestion? Here is the AQL search I used:Ā dataInstances.any(displayName = '[Purpose Tag]')

Best answer by Lisa Kovalskaia

HiĀ @lsmall028,

There must have been a tiny change in the metadata model and the name property is now referencedĀ instead of the displayName. SoĀ this query should work in v.14:Ā dataInstances.any(nameĀ =Ā '[Purpose Tag]')

2 replies

Lisa Kovalskaia
Ataccamer
Forum|alt.badge.img+3

HiĀ @lsmall028,

There must have been a tiny change in the metadata model and the name property is now referencedĀ instead of the displayName. SoĀ this query should work in v.14:Ā dataInstances.any(nameĀ =Ā '[Purpose Tag]')


Forum|alt.badge.img+4
  • Author
  • Data Enthusiast
  • August 14, 2023

Thank you so much for the response. This worked perfectly. 😁