I'm trying to upgrade to arizephoenix/phoenix:version-10.9.1 and in server log I'm seeing
INFO: 127.0.0.6:41839 - "POST /graphql HTTP/1.1" 200 OK
Unknown type 'GlobalID'.
GraphQL request:2:8
1 | query
(
2 | $id: GlobalID!
| ^
3 | ) {
INFO: 127.0.0.6:41839 - "POST /graphql HTTP/1.1" 200 OK
INFO: 127.0.0.6:41839 - "POST /graphql HTTP/1.1" 200 OK
INFO: 127.0.0.6:38527 - "POST /graphql HTTP/1.1" 200 OKanyone knows what is that GlobalID! about?
The error Unknown type 'GlobalID' in your GraphQL query is due to Phoenix recently removing GlobalID as a custom scalar from its GraphQL schema. If your frontend or client is still sending queries using GlobalID!, but the backend no longer supports it, you'll see this error. This often happens if your browser or client has cached an old JavaScript bundle that references the outdated schema. Clearing your browser cache or ensuring all clients use the latest code should resolve the issue. If you installed Phoenix recently, make sure you are using the correct package name (arize-phoenix) and not an old version or cached install (source, source).Would you like more detail on how to update your queries or clear your cache?Sources:
- https://github.com/Arize-ai/phoenix/issues/7718
- https://github.com/Arize-ai/phoenix/pull/7544
馃挕聽Hint: Mention RunLLM in the thread for followups.
Hi Zhuyi X. sorry you're hitting this; Can you try hard refreshing your Phoenix UI to clear out any stale javascript files that may still be performing these queries?
Cool, seems it's gone now. Thank you!
No problem and sorry again that this happened
