Prototype to generate Infrahub Schema from Pydantic models #306
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an initial Prototype to explore how we could better integrate Pydantic within the SDK
The end goal is to leverage Pydantic to define the schema and to support all CRUD operations, similar to how SQLmodel is working for a Relational Database.
In the current prototype, it's possible to: Define the schema and read objects, the other operations (Create, Update, Delete) aren't available yet
Define Infrahub Schema using Pydantic Models
Below a simple example with 2 models connected together with a relationship (One to Many)
The integration is based on the following principles
NodeModel
orGenericModel
model_config
InfrahubAttributeParam
andInfrahubRelationshipParam
)Field
In the example below, the annotation is used on
cars
to define the identifier for this relationshipQuery data using Pydantic
The main methods to query objects
get
,all
&filters
have been updated to access a Pydantic ModelsIn the example, below the model
Site
that was used to define the schema can also be used to query data.The
client.all()
will automatically format the data returned by the API using the modelSite
, in Pydantic formatCreate / Update objects
This part hasn't been implemented yet but here is an overview of what it could look like following something similar to SQLModel.