Hello ultimate goal: I want to make a SWQL custom query widget that will be able to have a user enter a node IP address and the output of the query will be links to which Orion Maps include that node.
I found in the database the information needed is at least in part contained in the Maps_Projects table. The Display Name is the title of the map and the Data field contains relevant map information including the node ID which would be searchable. So far I have been able to run the following query and get an output of the maps that contain the Node ID = 315.
SELECT TOP 1000 * FROM [dbo].[Maps_Projects] where Data like '%"id": "0_Orion.Nodes_315",%'

When I try running similar queries in SWQL in the custom query widget I get there was an error processing the request:

I have tried a number of possibilities to get an output. I referenced this article https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-fusion-swql-data-model-examples.htm for some examples and they do work but when I try changing Orion.Nodes to Orion.Maps or Orion.Maps_Projects or even Orion.NodesData.
I am guessing for some reason the data in these locations is not accessible and maybe only some locations like Orion.Nodes is accessible. I would greatly appreciate any feedback what might be going wrong and if any of what I want to achieve is possible or not.