Links
Comment on page

Ingest Web Page

Ingest HTML web pages.
Any web page can be ingested into Graphlit by providing the URL to the ingestPage mutation.
If you would like to ingest an entire website, via sitemap, have a look at creating a Web feed.
Currently, Graphlit does not support dynamic web pages, which require Javascript to execute before they fully render.
If you would appreciate this feature, please let us know on our Discord community.

Mutation:

mutation IngestPage($uri: URL!) {
ingestPage(uri: $uri) {
id
name
state
type
fileType
uri
}
}

Variables:

{
"uri": "https://docs.arize.com/phoenix/use-cases/troubleshooting-llm-retrieval-with-vector-stores"
}

Response:

{
"type": "PAGE",
"uri": "https://docs.arize.com/phoenix/use-cases/troubleshooting-llm-retrieval-with-vector-stores",
"id": "e92376e6-f18b-4228-8548-76bddc4f9eef",
"name": "Troubleshooting LLM Search and Retrieval with Vector Stores - Phoenix",
"state": "CREATED"
}