Skip to content

Commit 2c5b103

Browse files
committed
fix for computed columns
1 parent c1a0cae commit 2c5b103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_sqlalchemy/converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_column_doc(column):
2828

2929

3030
def is_column_nullable(column):
31-
return bool(getattr(column, 'nullable', False))
31+
return bool(getattr(column, 'nullable', True))
3232

3333

3434
def convert_sqlalchemy_relationship(relationship, registry):

0 commit comments

Comments
 (0)