forked from jeffdonthemic/node-red-contrib-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 17
/
sosl.html
46 lines (44 loc) · 1.81 KB
/
sosl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<script type="text/javascript">
RED.nodes.registerType('sosl',{
category: 'Salesforce',
color: '#C0DEED',
defaults: {
name: {value:""},
query: {value:""},
connection: {value:"", type:"connection-config", required: true}
},
inputs:1,
outputs:1,
icon: "salesforce.png",
label: function() {
return this.name||"sosl query";
}
});
</script>
<script type="text/x-red" data-template-name="sosl">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-connection"><i class="fa fa-plug"></i> Connection</label>
<input type="text" id="node-input-connection">
</div>
<div class="form-row">
<label for="node-input-query"><i class="fa fa-database"></i> Query</label>
<textarea id="node-input-query" style="width:300px"></textarea>
</div>
</script>
<script type="text/x-red" data-help-name="sosl">
<p>Executes a SOSL query.</p>
<pre>
FIND {united*} IN ALL FIELDS
RETURNING Account (Id, Name), Contact (Id, Name)
</pre>
<p>The resulting message has the following properties:
<ul><li>msg.payload.size - the number of records returned from the query.</li>
<li>msg.payload.records - the array of records returned from the query.</li>
</ul></p>
<p>The query can be configured in the node, however if left blank, the query should be set in an incoming message on <code>msg.query</code>.</p>
<p>See the <a href="https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_sosl.htm" target="_blank">Salesforce SOSL documentation</a> for more information.</p>
</script>