Contact Us 1-800-596-4880

DataSense Query Editor

The Query Editor in Studio allows you to query and retrieve complex data structures that you can use when designing your application. Using DataSense on an Anypoint Connector which supports query functionality, the Query Editor can automatically acquire metadata from remote application, discovering which data types and fields are available to query. The Query Editor displays the available data types and fields in a graphical menu. You select the ones you want to query.

Alternatively, if you are familiar with the remote application you want to access, you can enter your query directly in the remote application’s native query language.

The Query Editor also allows you to:

  • Filter your queries using conditional, arithmetic and boolean operators

  • Sort the results of your search

  • Define an offset starting point for your results

  • Limit the maximum number of results

Using the Query Editor in conjunction DataSense’s perceptive flow design facilitates designing and building a SaaS integration flow. You create complex mappings by placing a DataWeave transformer before or after a connector in your flow.

Assumptions

This document assumes that you are familiar with the Visual Editor in Anypoint Studio, as well as the Anypoint Connectors, in particular the Salesforce cloud connector used in the example queries. This document also references Connectors, Global Elements, and DataSense. To learn more about developing with Mule’s graphical user interface, review Getting Started with Anypoint Studio.

Using the Query Editor

The table below lists the Anypoint Connectors which support Query Editor functionality. (Additionally, you can use the Query Editor with any custom-built connector which supports the query functionality.)

Connector supports query editor Bundled with Studio

Marketo

Microsoft Dynamics CRM (on Demand)

Microsoft Dynamics CRM (on Premise)

NetSuite

QuickBooks

Salesforce

Zuora

Learn how to add connectors to your instance of Anypoint Studio.

Accessing the Query Editor

  1. To access the Query Editor, add a connector to your flow, then access its Properties Editor.

  2. Set the value of the Operations field to Query.

  3. Use the drop-down menu to select a value for Language (refer to Choosing a Query Language below).

  4. Enter your query text directly in the Query Text field, or click the Query Builder…​ button to build your query using the graphical editor. Refer to the Exploring the Query Builder section for details.

Choosing a Query Language

Using the Query Editor, you have the option to select the language with which you wish to construct your query:

  • DataSense Query Language allows you to perform queries using SQL elements and syntax. Using the DataSense query language, you can use the Query Editor’s graphical interface for almost all operations.

  • Native Query Language refers to language employed by a particular application. The Query Editor allows you to enter your query directly in native query language; however, you cannot be able to use the graphical Query Editor interface.

The following characteristics and requirements of the DataSense and Native query languages correspond to each option.

DataSense Query Language (DSQL)

The Query Editor retrieves available object types and fields, then lists them in a menu for you to select and filter. You can build your query using a graphical user interface, shown below. Within the connector in your flow, you need to reference a Global Element with DataSense enabled.

DSLimage

Native Query Language (NQL)

You enter your query in the Query Editor’s search box, using a simple SQL-like query language. You must know the language and exact names of the data types and fields you wish to query.

Query Language Translation*

If you write a query in DataSense query language, you can use the drop-down language selector to switch to Native Query Language to automatically translate DSQL into NQL.

Note that query language translation is "one-way", meaning you can translate DSQL to NQL, but not NQL to DSQL.

Exploring the Query Builder

This section offers detailed information about each part of the query builder and how to use the fields to construct a query.

query_builder
Number Description

1

Object Types pane and filter box.

Displays all available object types. To find and select an object, manually scroll through the objects displayed, or type a string in the filter box to display only those objects whose names contain the string. Bear in mind that:

  • You can only select one object

  • When you select an object, Studio populates the Fields pane with the fields available for that object

    • When you select an object, Studio automatically connects to the API and retrieves the available fields for that object, then stores the information in the cache; this operation can take several seconds.

2

Fields pane.

Displays all fields available for the selected object type (or blank if no object type is selected). To find and select a field, manually scroll through the fields displayed, or type a string in the filter box to display only those fields whose names contain the string. You can select multiple fields, or you can select all fields using the checkbox at left of Fields filter field.

Where applicable, the Query Builder supports nested fields, so that you can select subfields to include in your query.

3

Filter section.

  • By default, the Query Builder uses the Basic setting, which displays the graphical fields for creating filters, automatically concatenating conditions with an AND operator.

  • Select the Advance setting to write your query manually using DataSense query language. With this setting, Query Builder supports auto-completion for operators and fields, and supports the option to concatenate conditions with an OR operator.

    1. After selecting Advance, click to select a Type in the upper left pane.

    2. Set your cursor in the filter field.

    3. Hit CTRL + space to prompt the auto-complete mechanism to display available input options.

4

Field selector for filter.

Click the drop-down menu to select any of the fields available for the selected object. The filter applies only to that field.

5

Operator selector for filter.

Click to select any of the following operators:

<

less than

< =

less than or equal to

=

equal to

>

greater than

> =

greater than or equal to

< >

not equal to

like

like

6

Operator value input box.
Enter the value that the filter uses to evaluate the field.

7

Filter remove button.
Click to remove the filter.

8

Add Filter button.
Click to add a new filter.

9

Field selector for the Order By option.
Click the drop-down menu to select any of the fields available for the selected object. Studio orders the results of the query according to the field you select.

10

Field selector for the Direction in which you want to order results: Ascending or Descending.

11

Limit input field.
Enter the number that sets the maximum number of results that the query will return, or leave blank for no limit.

12

Offset input field.
Enter the number that defines the offset (i.e. how many results to ignore before returning results). The default is 0.

Example

This section demonstrates how to use the Query Editor in the context of a use case example. In this case, the example application makes use of a a Salesforce connector to integrate with Salesforce. To use the Query Builder in such an application, one must complete the following macro steps, outlined in more detail below.

  1. Create a Salesforce Global Element.

  2. Add a Salesforce connector to the flow; configure it to reference the global Salesforce element.

  3. Access the Query Editor.

  4. Build a query.

Creating a Salesforce Global Element

  1. In the Global Elements tab, create and configure a Salesforce global element.

  2. Include valid Username, Password, and Security Token.

  3. Click OK to save your global element.

    When you enable DataSense in the Salesforce global element, Studio automatically attempts to retrieve Salesforce metadata using the user credentials you supply. If the user credentials are invalid, the retrieve operation fails and you cannot create your global element.

Adding a Salesforce Connector

  1. Add a Salesforce Connector to your Mule flow.

  2. Configure the connector to reference the global Salesforce connector you just created, and set the Operation to `Query `.

Accessing the Query Editor and Building a Query

  1. In the Properties Editor of the Salesforce connector, use the drop-down to select the Language you wish to use. In the context of this example, keep the default value, DataSense Query Language. (The Using the Native Query Language describes an example of a query built using Salesforce’s native query language.)

  2. If you wish, write your query directly in to the Query Text input box. For the purpose of this example, click the Query Builder button to build your query with the graphical interface.

  3. Select an object type from the list of those available in the Types pane.

  4. When you select an object, the Fields pane displays the object’s available fields. Select any number of fields to query.

  5. Click Add Filter to create a query filter. You can create multiple filters to operate on available fields, and configure sorting, offset and limits for query results. Refer to Exploring the Query Builder section above for more detail.

  6. After you have defined your query, click OK. The Query Editor saves, then displays your query in the Query Text field in the Properties Editor.

    query_language
  7. At this point, your query is fully defined. If you wish to modify it, just click the Query Builder button to change whatever you need. To modify your query, you can also edit it directly in the Query Text field. The Query Editor incorporates any additional fields, filters or clauses you enter; clicking Query Builder again displays the Query Builder window with your changes added.

Due to the complexity of graphical representation, the graphical Query Builder cannot display the OR conditional operator using the Basic setting, although the DataSense query language supports it. To use the graphical Query Builder to construct a query that contains one or more OR operators, proceed as follows:

  1. Build your query with the graphical Query Builder, using it to select from the available objects and fields.

  2. Click Advanced in the Filter section to display the query text field.

  3. Write your query in the query text field to include the OR operator. Your query will work, even though you can’t see your query in the editor’s Basic setting.

    basic_advanced

Using the Native Query Language

To use the remote application’s native query language (in this case, the Salesforce Object Query Language ), select Native Query Language in the Language drop-down menu, then enter your query in the Query Text input field. The statement below selects the fields AccountID, Email, FirstName, and LastName from all objects of type Contact whose field Employee_Still_With_Company_c is marked TRUE.

SELECT AccountId,Email,FirstName,LastName FROM Contact WHERE Employee_Still_With_Company__c = TRUE