<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic QueryTask not returning results when it should! in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91843#M8365</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So I am trying to do something very simple - return the points for the USGS Steam Flow Station layer (&lt;/SPAN&gt;&lt;A href="http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0&lt;/A&gt;&lt;SPAN&gt;) that fall within the District of Columbia.&amp;nbsp; There should be 3.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First I construct a QueryTask to get the District of Columbia layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTask = new esri.tasks.QueryTask(districtURL);
&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.where = "CITY_NAME = 'Washington'"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.execute(query, queryResults, errorCall);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've verified that this works - one feature is returned.&amp;nbsp; However, when I try to query the points in Steam Flow Station layer against this result, I get an error since null results are returned!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function queryResults(featureSet){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(featureSet.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(map.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTaskWithin = new esri.tasks.QueryTask("http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.spatialRelationship = esri.tasks.Query.SPATIAL_REL_WITHIN;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = featureSet.features[0].geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTaskWithin.execute(query)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(queryTaskWithin, "onComplete", function(fset) {
 console.log(fset.features.length);
 }, function(error){console.log("error" + error)});
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At one point I was getting 0 results and no error, but now I'm just getting an error.&amp;nbsp; I thought this should be a simple task - any assistance would be of great help.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, the spatial references of the district layer and the Steam Flow Station layer are seemingly different.&amp;nbsp; One is 102100 and the other is 3857.&amp;nbsp; But I think those are both web mercator so it shouldn't matter too much, right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jay&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 23:30:55 GMT</pubDate>
    <dc:creator>JayGregory</dc:creator>
    <dc:date>2021-12-10T23:30:55Z</dc:date>
    <item>
      <title>QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91843#M8365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So I am trying to do something very simple - return the points for the USGS Steam Flow Station layer (&lt;/SPAN&gt;&lt;A href="http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0&lt;/A&gt;&lt;SPAN&gt;) that fall within the District of Columbia.&amp;nbsp; There should be 3.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First I construct a QueryTask to get the District of Columbia layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTask = new esri.tasks.QueryTask(districtURL);
&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.where = "CITY_NAME = 'Washington'"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.execute(query, queryResults, errorCall);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've verified that this works - one feature is returned.&amp;nbsp; However, when I try to query the points in Steam Flow Station layer against this result, I get an error since null results are returned!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function queryResults(featureSet){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(featureSet.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(map.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTaskWithin = new esri.tasks.QueryTask("http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.spatialRelationship = esri.tasks.Query.SPATIAL_REL_WITHIN;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = featureSet.features[0].geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTaskWithin.execute(query)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(queryTaskWithin, "onComplete", function(fset) {
 console.log(fset.features.length);
 }, function(error){console.log("error" + error)});
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At one point I was getting 0 results and no error, but now I'm just getting an error.&amp;nbsp; I thought this should be a simple task - any assistance would be of great help.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, the spatial references of the district layer and the Steam Flow Station layer are seemingly different.&amp;nbsp; One is 102100 and the other is 3857.&amp;nbsp; But I think those are both web mercator so it shouldn't matter too much, right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jay&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:30:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91843#M8365</guid>
      <dc:creator>JayGregory</dc:creator>
      <dc:date>2021-12-10T23:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91844#M8366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So I am trying to do something very simple - return the points for the USGS Steam Flow Station layer (&lt;A href="http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0&lt;/A&gt;) that fall within the District of Columbia.&amp;nbsp; There should be 3.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;First I construct a QueryTask to get the District of Columbia layer&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTask = new esri.tasks.QueryTask(districtURL);
&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.where = "CITY_NAME = 'Washington'"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.execute(query, queryResults, errorCall);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;I've verified that this works - one feature is returned.&amp;nbsp; However, when I try to query the points in Steam Flow Station layer against this result, I get an error since null results are returned!&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function queryResults(featureSet){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(featureSet.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(map.spatialReference);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTaskWithin = new esri.tasks.QueryTask("http://rmgsc.cr.usgs.gov/ArcGIS/rest/services/nhss_usdata/MapServer/0");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = ["*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.spatialRelationship = esri.tasks.Query.SPATIAL_REL_WITHIN;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = featureSet.features[0].geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTaskWithin.execute(query)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(queryTaskWithin, "onComplete", function(fset) {
 console.log(fset.features.length);
 }, function(error){console.log("error" + error)});
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;At one point I was getting 0 results and no error, but now I'm just getting an error.&amp;nbsp; I thought this should be a simple task - any assistance would be of great help.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Also, the spatial references of the district layer and the Steam Flow Station layer are seemingly different.&amp;nbsp; One is 102100 and the other is 3857.&amp;nbsp; But I think those are both web mercator so it shouldn't matter too much, right?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Jay&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the issue is your&amp;nbsp; query.spatialRelationship. Comment it out, and see what happen.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:30:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91844#M8366</guid>
      <dc:creator>HemingZhu</dc:creator>
      <dc:date>2021-12-10T23:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91845#M8367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try unprojecting the coordinates:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Code: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;query.geometry =&amp;nbsp; esri.geometry.webMercatorToGeographic(featureSet.features[0].geometry);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Josh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2012 17:03:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91845#M8367</guid>
      <dc:creator>JoshuaTanner</dc:creator>
      <dc:date>2012-04-17T17:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91846#M8368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Josh - thanks for the suggestion.&amp;nbsp; I tried that, and it still doesn't work.&amp;nbsp; When I set the extent to the returned geometry of the first query (returning the DC borders), it zooms to the coast of Africa like there was no project, although the spatial Reference is 3857, and the original DC layer draws in the correct location on a base map.&amp;nbsp; Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, Jay&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 00:10:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91846#M8368</guid>
      <dc:creator>JayGregory</dc:creator>
      <dc:date>2012-04-18T00:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91847#M8369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am having the same issue with the querytask.&amp;nbsp; I am getting a null returned as well.&amp;nbsp; My code is similar to Jay's although I am using a different Map service and layer of course.&amp;nbsp; Can someone help with this issue???&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 18:28:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91847#M8369</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-24T18:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91848#M8370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am having the same issue with the querytask.&amp;nbsp; I am getting a null returned as well.&amp;nbsp; My code is similar to Jay's although I am using a different Map service and layer of course.&amp;nbsp; Can someone help with this issue???&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please start a new thread and post some code that shows the issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 19:29:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91848#M8370</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-24T19:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91849#M8371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have posted the answer that I found, which worked for me in a seperate post:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/56118-QueryTask-not-showing-results-when-it-should"&gt;http://forums.arcgis.com/threads/56118-QueryTask-not-showing-results-when-it-should&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 20:06:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91849#M8371</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-24T20:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: QueryTask not returning results when it should!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91850#M8372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. Would have been useful to know you're using Flex, not JavaScript ;).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2012 20:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/querytask-not-returning-results-when-it-should/m-p/91850#M8372</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-24T20:25:49Z</dc:date>
    </item>
  </channel>
</rss>

