Why does featureLayer.graphicProvider only contain graphics of currently selected features? The same is not true for graphicsLayer.graphicProvider...In the following code it will not enter the loop unless i do a selection beforehand...var fl:FeatureLayer = obj.layer; for each (var graphic:Graphic in fl.graphicProvider){ Alert.show("hello"); }Can someone explain.