microsoftgraph / msgraph-sample-github-connector-python

This Python application shows how to create a Microsoft Graph connector for GitHub repos and issues.
MIT License
10 stars 12 forks source link

data upadtes #3

Closed rivka-friedman closed 5 months ago

rivka-friedman commented 5 months ago

is it possible to configure the connector to get updated if github data changes, i.e. a new repository is created? I mean to incremental crawl

jasonjoh commented 5 months ago

@rivka-friedman this sample doesn't do that, but you could certainly build something like that. When a connector does a push is completely up to the developer. I could see using a GitHub webhook to listen for events, and then pushing new data into the connector.

Hope that helps!