A G plugin for using CSS select syntax in query selector
npm install @antv/g-plugin-css-selectUse CSS Selector when doing query in scene graph.
For example, if we construct a such scene:
```
solarSystem
| |
| sun
|
earthOrbit
| |
| earth
|
moonOrbit
|
moon
Then we can use these DOM API retrieving elements:
`javascript
solarSystem.getElementsByName('sun');
// [sun]
solarSystem.getElementsByTagName('circle');
solarSystem.getElementsByTagName(Shape.CIRCLE);
// [sun, earth, moon]
solarSystem.querySelector('[name=sun]');
// sun
solarSystem.querySelectorAll('[r=25]');
// [moon]
``