Hi,I've experienced a problem with null geometries in query results in SL API v.2.4.When the first resulting feature in a query result has a null geometry, the geometries for all other features in the result becomes an Envelope geometry with NaN coordinate values.Querying for two features, one of which has a null geometry, results in the following JSON result (I've manually removed some coordinates in the resulting geometry):{ "objectIdFieldName" : "OBJECTID", "globalIdFieldName" : "", "fields" : [ ], "features" : [ { "attributes" : { } }, { "geometry" : { "rings" : [ [ [ 379081.89869999979, 6166936.2956000008 ], [ 379097.42150000017, 6166860.2313999999 ], [ 379049.97439999972, 6166931.2594000008 ], [ 379081.89869999979, 6166936.2956000008 ] ] ] }, "attributes" : { } } ] }while querying for only the feature that has a geometry results in:{ "objectIdFieldName" : "OBJECTID", "globalIdFieldName" : "", "geometryType" : "esriGeometryPolygon", "spatialReference" : { "wkid" : 3006 }, "fields" : [ ], "features" : [ { "geometry" : { "rings" : [ [ [ 379081.89869999979, 6166936.2956000008 ], [ 379097.42150000017, 6166860.2313999999 ], [ 379049.97439999972, 6166931.2594000008 ], [ 379081.89869999979, 6166936.2956000008 ] ] ] }, "attributes" : { } } ] }The geometry is returned in JSON in both cases, but the resulting Graphic's Geometry property is incorrect in the first case. Notice that the JSON fields "geometryType" and "spatialReference" is missing in the first case.Is this a bug?Best regardsMarkus Hjärne