Query the Azure Digital Twins twin graph
This article offers query examples and instructions for using the Azure Digital Twins query language to query your twin graph for information. (For an introduction to the query language, see Query language.)
The article contains sample queries that illustrate the query language structure and common query operations for digital twins. It also describes how to run your queries after you've written them, using the Azure Digital Twins Query API or an SDK.
Note
If you're running the sample queries below with an API or SDK call, you'll need to condense the query text into a single line.
Reference documentation
The Query language reference can be found under Reference in the left table of contents for the Azure Digital Twins documentation. You can also go directly to the reference sections using the links below:
Show all digital twins
Here's the basic query that will return a list of all digital twins in the instance:
SELECT * FROM DIGITALTWINS
Query by property
Get digital twins by properties (including ID and metadata):
SELECT *
FROM DIGITALTWINS T
WHERE T.firmwareVersion = '1.1'
AND T.$dtId in ['123', '456']
AND T.Temperature = 70
As shown in the query above, the ID of a digital twin is queried using the metadata field $dtId
.
Tip
If you are using Cloud Shell to run a query with metadata fields that begin with $
, you should escape the $
with a backslash to let Cloud Shell know it's not a variable and should be consumed as a literal in the query text.
You can also get twins based on whether a certain property is defined. Here's a query that gets twins that have a defined Location
property:
SELECT * FROM DIGITALTWINS WHERE IS_DEFINED(Location)
This query can help you get twins by their tag
properties, as described in Add tags to digital twins. Here's a query that gets all twins tagged with red
:
SELECT * FROM DIGITALTWINS WHERE IS_DEFINED(tags.red)
You can also get twins based on the type of a property. Here's a query that gets twins whose Temperature
property is a number:
SELECT * FROM DIGITALTWINS T WHERE IS_NUMBER(T.Temperature)
Query Map properties
If a property is of the complex type Map
, you can use the map keys and values directly in the query, like this:
SELECT * FROM DIGITALTWINS T WHERE T.<propertyName>.<mapKey> = '<mapValue>'
If the map key starts with a numeric character, you'll need to wrap the key in double square brackets ([[<mapKey>]]
) to escape it in the query, similar to the strategy for querying with reserved keywords.
Query by model
The IS_OF_MODEL
operator can be used to filter based on the twin's model.
It considers inheritance and model versioning, and evaluates to true
for a given twin if the twin meets either of these conditions:
- The twin directly implements the model provided to
IS_OF_MODEL()
, and the version number of the model on the twin is greater than or equal to the version number of the provided model - The twin implements a model that extends the model provided to
IS_OF_MODEL()
, and the twin's extended model version number is greater than or equal to the version number of the provided model
So for example, if you query for twins of the model dtmi:example:widget;4
, the query will return all twins based on version 4 or greater of the widget model, and also twins based on version 4 or greater of any models that inherit from widget.
IS_OF_MODEL
can take several different parameters, and the rest of this section is dedicated to its different overload options.
The simplest use of IS_OF_MODEL
takes only a twinTypeName
parameter: IS_OF_MODEL(twinTypeName)
.
Here's a query example that passes a value in this parameter:
SELECT * FROM DIGITALTWINS WHERE IS_OF_MODEL('dtmi:example:thing;1')
To specify a twin collection to search when there's more than one (like when a JOIN
is used), add the twinCollection
parameter: IS_OF_MODEL(twinCollection, twinTypeName)
.
Here's a query example that adds a value for this parameter:
SELECT * FROM DIGITALTWINS DT WHERE IS_OF_MODEL(DT, 'dtmi:example:thing;1')
To do an exact match, add the exact
parameter: IS_OF_MODEL(twinTypeName, exact)
.
Here's a query example that adds a value for this parameter:
SELECT * FROM DIGITALTWINS WHERE IS_OF_MODEL('dtmi:example:thing;1', exact)
You can also pass all three arguments together: IS_OF_MODEL(twinCollection, twinTypeName, exact)
.
Here's a query example specifying a value for all three parameters:
SELECT * FROM DIGITALTWINS DT WHERE IS_OF_MODEL(DT, 'dtmi:example:thing;1', exact)
Query by relationship
When querying based on digital twins' relationships, the Azure Digital Twins query language has a special syntax.
Relationships are pulled into the query scope in the FROM
clause. Unlike in "classical" SQL-type languages, each expression in the FROM
clause isn't a table; rather, the FROM
clause expresses a cross-entity relationship traversal. To traverse across relationships, Azure Digital Twins uses a custom version of JOIN
.
Recall that with the Azure Digital Twins model capabilities, relationships don't exist independently of twins, meaning that relationships here can't be queried independently and must be tied to a twin.
To reflect this fact, the keyword RELATED
is used in the JOIN
clause to pull in the set of a certain type of relationship coming from the twin collection. The query must then filter in the WHERE
clause, to indicate which specific twin(s) to use in the relationship query (using the twins' $dtId
values).
The following sections give examples of what this looks like.
Basic relationship query
Here's a sample relationship-based query. This code snippet selects all digital twins with an ID
property of ABC
, and all digital twins related to these digital twins via a contains
relationship.
SELECT T, CT
FROM DIGITALTWINS T
JOIN CT RELATED T.contains
WHERE T.$dtId = 'ABC'
The type of the relationship (contains
in the example above) is indicated using the relationship's name
field from its DTDL definition.
Note
The developer does not need to correlate this JOIN
with a key value in the WHERE
clause (or specify a key value inline with the JOIN
definition). This correlation is computed automatically by the system, as the relationship properties themselves identify the target entity.
Query by the source or target of a relationship
You can use the relationship query structure to identify a digital twin that's the source or the target of a relationship.
For instance, you can start with a source twin and follow its relationships to find the target twins of the relationships. Here's an example of a query that finds the target twins of the feeds
relationships coming from the twin source-twin.
SELECT target
FROM DIGITALTWINS source
JOIN target RELATED source.feeds
WHERE source.$dtId = 'source-twin'
You can also start with the target of the relationship and trace the relationship back to find the source twin. Here's an example of a query that finds the source twin of a feeds
relationship to the twin target-twin.
SELECT source
FROM DIGITALTWINS source
JOIN target RELATED source.feeds
WHERE target.$dtId = 'target-twin'
Query the properties of a relationship
Similarly to the way digital twins have properties described via DTDL, relationships can also have properties. You can query twins based on the properties of their relationships.
The Azure Digital Twins query language allows filtering and projection of relationships, by assigning an alias to the relationship within the JOIN
clause.
As an example, consider a servicedBy
relationship that has a reportedCondition
property. In the below query, this relationship is given an alias of R
to reference its property.
SELECT T, SBT, R
FROM DIGITALTWINS T
JOIN SBT RELATED T.servicedBy R
WHERE T.$dtId = 'ABC'
AND R.reportedCondition = 'clean'
In the example above, note how reportedCondition
is a property of the servicedBy
relationship itself (NOT of some digital twin that has a servicedBy
relationship).
Query with multiple JOINs
Up to five JOIN
s are supported in a single query, which allows you to traverse multiple levels of relationships at once.
To query on multiple levels of relationships, use a single FROM
statement followed by N JOIN
statements, where the JOIN
statements express relationships on the result of a previous FROM
or JOIN
statement.
Here's an example of a multi-join query, which gets all the light bulbs contained in the light panels in rooms 1 and 2.
SELECT LightBulb
FROM DIGITALTWINS Room
JOIN LightPanel RELATED Room.contains
JOIN LightBulb RELATED LightPanel.contains
WHERE IS_OF_MODEL(LightPanel, 'dtmi:contoso:com:lightpanel;1')
AND IS_OF_MODEL(LightBulb, 'dtmi:contoso:com:lightbulb ;1')
AND Room.$dtId IN ['room1', 'room2']
Count items
You can count the number of items in a result set using the Select COUNT
clause:
SELECT COUNT()
FROM DIGITALTWINS
Add a WHERE
clause to count the number of items that meet a certain criteria. Here are some examples of counting with an applied filter based on the type of twin model (for more on this syntax, see Query by model below):
SELECT COUNT()
FROM DIGITALTWINS
WHERE IS_OF_MODEL('dtmi:sample:Room;1')
SELECT COUNT()
FROM DIGITALTWINS c
WHERE IS_OF_MODEL('dtmi:sample:Room;1') AND c.Capacity > 20
You can also use COUNT
along with the JOIN
clause. Here's a query that counts all the light bulbs contained in the light panels of rooms 1 and 2:
SELECT COUNT()
FROM DIGITALTWINS Room
JOIN LightPanel RELATED Room.contains
JOIN LightBulb RELATED LightPanel.contains
WHERE IS_OF_MODEL(LightPanel, 'dtmi:contoso:com:lightpanel;1')
AND IS_OF_MODEL(LightBulb, 'dtmi:contoso:com:lightbulb;1')
AND Room.$dtId IN ['room1', 'room2']
Filter results: select top items
You can select the several "top" items in a query using the Select TOP
clause.
SELECT TOP (5)
FROM DIGITALTWINS
WHERE ...
Filter results: specify return set with projections
By using projections in the SELECT
statement, you can choose which columns a query will return. Projection is now supported for both primitive and complex properties. For more information about projections with Azure Digital Twins, see the SELECT clause reference documentation.
Here's an example of a query that uses projection to return twins and relationships. The following query projects the Consumer, Factory, and Edge from a scenario where a Factory with an ID of ABC
is related to the Consumer through a relationship of Factory.customer
, and that relationship is presented as the Edge
.
SELECT Consumer, Factory, Edge
FROM DIGITALTWINS Factory
JOIN Consumer RELATED Factory.customer Edge
WHERE Factory.$dtId = 'ABC'
You can also use projection to return a property of a twin. The following query projects the Name
property of the Consumers that are related to the Factory with an ID of ABC
through a relationship of Factory.customer
.
SELECT Consumer.name
FROM DIGITALTWINS Factory
JOIN Consumer RELATED Factory.customer Edge
WHERE Factory.$dtId = 'ABC'
You can also use projection to return a property of a relationship. Like in the previous example, the following query projects the Name
property of the Consumers related to the Factory with an ID of ABC
through a relationship of Factory.customer
; but now it also returns two properties of that relationship, prop1
and prop2
. It does this by naming the relationship Edge
and gathering its properties.
SELECT Consumer.name, Edge.prop1, Edge.prop2, Factory.area
FROM DIGITALTWINS Factory
JOIN Consumer RELATED Factory.customer Edge
WHERE Factory.$dtId = 'ABC'
You can also use aliases to simplify queries with projection.
The following query does the same operations as the previous example, but it aliases the property names to consumerName
, first
, second
, and factoryArea
.
SELECT Consumer.name AS consumerName, Edge.prop1 AS first, Edge.prop2 AS second, Factory.area AS factoryArea
FROM DIGITALTWINS Factory
JOIN Consumer RELATED Factory.customer Edge
WHERE Factory.$dtId = 'ABC'
Here's a similar query that queries the same set as above, but projects only the Consumer.name
property as consumerName
, and projects the complete Factory as a twin.
SELECT Consumer.name AS consumerName, Factory
FROM DIGITALTWINS Factory
JOIN Consumer RELATED Factory.customer Edge
WHERE Factory.$dtId = 'ABC'
Build efficient queries with the IN operator
You can significantly reduce the number of queries you need by building an array of twins and querying with the IN
operator.
For example, consider a scenario in which Buildings contain Floors and Floors contain Rooms. To search for rooms within a building that are hot, one way is to follow these steps.
Find floors in the building based on the
contains
relationship.SELECT Floor FROM DIGITALTWINS Building JOIN Floor RELATED Building.contains WHERE Building.$dtId = @buildingId
To find rooms, instead of considering the floors one-by-one and running a
JOIN
query to find the rooms for each one, you can query with a collection of the floors in the building (named Floor in the query below).In client app:
var floors = "['floor1','floor2', ..'floorn']";
In query:
SELECT Room FROM DIGITALTWINS Floor JOIN Room RELATED Floor.contains WHERE Floor.$dtId IN ['floor1','floor2', ..'floorn'] AND Room. Temperature > 72 AND IS_OF_MODEL(Room, 'dtmi:com:contoso:Room;1')
Other compound query examples
You can combine any of the above types of query using combination operators to include more detail in a single query. Here are some other examples of compound queries that query for more than one type of twin descriptor at once.
- Out of the devices that Room 123 has, return the MxChip devices that serve the role of Operator
SELECT device FROM DIGITALTWINS space JOIN device RELATED space.has WHERE space.$dtid = 'Room 123' AND device.$metadata.model = 'dtmi:contoso:com:DigitalTwins:MxChip:3' AND has.role = 'Operator'
- Get twins that have a relationship named
Contains
with another twin that has an ID ofid1
SELECT Room FROM DIGITALTWINS Room JOIN Thermostat RELATED Room.Contains WHERE Thermostat.$dtId = 'id1'
- Get all the rooms of this room model that are contained by floor11
SELECT Room FROM DIGITALTWINS Floor JOIN Room RELATED Floor.Contains WHERE Floor.$dtId = 'floor11' AND IS_OF_MODEL(Room, 'dtmi:contoso:com:DigitalTwins:Room;1')
Run queries with the API
Once you've decided on a query string, you execute it by making a call to the Query API.
You can call the API directly, or use one of the SDKs available for Azure Digital Twins.
The following code snippet illustrates the .NET (C#) SDK call from a client app:
// Run a query for all twins
string query = "SELECT * FROM DIGITALTWINS";
AsyncPageable<BasicDigitalTwin> result = client.QueryAsync<BasicDigitalTwin>(query);
The query used in this call returns a list of digital twins, which the above example represents with BasicDigitalTwin objects. The return type of your data for each query will depend on what terms you specify with the SELECT
statement:
- Queries that begin with
SELECT * FROM ...
will return a list of digital twins (which can be serialized asBasicDigitalTwin
objects, or other custom digital twin types that you may have created). - Queries that begin in the format
SELECT <A>, <B>, <C> FROM ...
will return a dictionary with keys<A>
,<B>
, and<C>
. - Other formats of
SELECT
statements can be crafted to return custom data. You might consider creating your own classes to handle customized result sets.
Query with paging
Query calls support paging. Here's a complete example using BasicDigitalTwin
as query result type with error handling and paging:
AsyncPageable<BasicDigitalTwin> result = client.QueryAsync<BasicDigitalTwin>("Select * From DigitalTwins");
try
{
await foreach (BasicDigitalTwin twin in result)
{
// You can include your own logic to print the result
// The logic below prints the twin's ID and contents
Console.WriteLine($"Twin ID: {twin.Id} \nTwin data");
foreach (KeyValuePair<string, object> kvp in twin.Contents)
{
Console.WriteLine($"{kvp.Key} {kvp.Value}");
}
}
}
catch (RequestFailedException ex)
{
Console.WriteLine($"Error {ex.Status}, {ex.ErrorCode}, {ex.Message}");
throw;
}
Next steps
Learn more about the Azure Digital Twins APIs and SDKs, including the Query API that is used to run the queries from this article.