feat(query): studio graph (#9888)
### Description
A very basic API for getting your package graph. You can query nodes and
edges between those nodes:
```
{
packageGraph {
nodes {
items {
name
}
}
edges {
items {
source
target
}
}
}
}
```
### Testing Instructions
<!--
Give a quick description of steps to test your changes.
-->