Skip to content

Commit 2c632d5

Browse files
committed
Specify type of uint variable xmin explicitely
1 parent 26c3aa1 commit 2c632d5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/src/GraphQl/Entities/EntityType.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ IObjectTypeDescriptor<TEntity> descriptor
3131
// TODO Do we want to expose this, require it as input, and use it to discover concurrent writes?
3232
descriptor
3333
.Field(t => t.xmin)
34+
.Type<NonNullType<NonNegativeIntType>>()
3435
.Name("version")
3536
.Ignore();
3637
}

0 commit comments

Comments
 (0)