Hi Oluwasogo, Kehinde (Data Evidence and Performance) ,
Thank you for reaching out on Microsoft Q&A.
The GraphRAG Solution Accelerator you deployed is archived and does not support incremental indexing. To add new documents, you can:
- Upload new files to the data API:
curl -X POST "$APIM_BASE/data" \
-H "Ocp-Apim-Subscription-Key: $KEY"
-F "container_name=<your-input-container>"
-F "overwrite=true"
-F "files=@/path/to/new1.pdf"
**Re-index** the same index:
```yaml
curl -X POST "$APIM_BASE/index" \
-H "Ocp-Apim-Subscription-Key: $KEY" \
-H "Content-Type: application/json" \
-d '{"storage_container_name":"<your-input-container>","index_container_name":"<your-index-name>"}'
Check status:
curl "$APIM_BASE/index/status/<your-index-name>" \
-H "Ocp-Apim-Subscription-Key: $KEY"
For incremental (delta-only) updates, use the maintained microsoft/graphrag library and run:
graphrag update --root /path/to/workspace
References:
GraphRAG Accelerator (archived)
I hope this helps. If the information is useful, please accept the answer so it can assist other community members.