queryset
Contains QuerySet and different Query classes to allow for constructing of sql queries.
FieldAccessor
Helper to access ormar fields directly from Model class also for nested models attributes.
Source code in ormar\queryset\field_accessor.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
__eq__(other)
overloaded to work as sql column = <VALUE>
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
76 77 78 79 80 81 82 83 84 85 |
|
__ge__(other)
overloaded to work as sql column >= <VALUE>
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
87 88 89 90 91 92 93 94 95 96 |
|
__getattr__(item)
Accessor return new accessor for each field and nested models. Thanks to that operator overload is possible to use in filter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
str
|
attribute name |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.field_accessor.FieldAccessor
|
FieldAccessor for field or nested model |
Source code in ormar\queryset\field_accessor.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
__gt__(other)
overloaded to work as sql column > <VALUE>
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
98 99 100 101 102 103 104 105 106 107 |
|
__le__(other)
overloaded to work as sql column <= <VALUE>
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
109 110 111 112 113 114 115 116 117 118 |
|
__lshift__(other)
overloaded to work as sql column IN (<VALUE1>, <VALUE2>,...)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
142 143 144 145 146 147 148 149 150 151 |
|
__lt__(other)
overloaded to work as sql column < <VALUE>
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
120 121 122 123 124 125 126 127 128 129 |
|
__mod__(other)
overloaded to work as sql column LIKE '%<VALUE>%'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
131 132 133 134 135 136 137 138 139 140 |
|
__rshift__(other)
overloaded to work as sql column IS NULL
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
153 154 155 156 157 158 159 160 161 162 |
|
asc()
works as sql column asc
Returns:
Type | Description |
---|---|
ormar.queryset.actions.OrderGroup
|
OrderGroup for operator |
Source code in ormar\queryset\field_accessor.py
263 264 265 266 267 268 269 270 |
|
contains(other)
works as sql column LIKE '%<VALUE>%'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
186 187 188 189 190 191 192 193 194 195 |
|
desc()
works as sql column desc
Returns:
Type | Description |
---|---|
ormar.queryset.actions.OrderGroup
|
OrderGroup for operator |
Source code in ormar\queryset\field_accessor.py
272 273 274 275 276 277 278 279 280 281 |
|
endswith(other)
works as sql column LIKE '%<VALUE>'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
230 231 232 233 234 235 236 237 238 239 |
|
icontains(other)
works as sql column LIKE '%<VALUE>%'
case-insensitive
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
197 198 199 200 201 202 203 204 205 206 |
|
iendswith(other)
works as sql column LIKE '%<VALUE>'
case-insensitive
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
241 242 243 244 245 246 247 248 249 250 |
|
iexact(other)
works as sql column = <VALUE>
case-insensitive
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
175 176 177 178 179 180 181 182 183 184 |
|
in_(other)
works as sql column IN (<VALUE1>, <VALUE2>,...)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
164 165 166 167 168 169 170 171 172 173 |
|
isnull(other)
works as sql column IS NULL
or IS NOT NULL
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
252 253 254 255 256 257 258 259 260 261 |
|
istartswith(other)
works as sql column LIKE '%<VALUE>'
case-insensitive
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
219 220 221 222 223 224 225 226 227 228 |
|
startswith(other)
works as sql column LIKE '<VALUE>%'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Any
|
value to check agains operator |
required |
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup for operator |
Source code in ormar\queryset\field_accessor.py
208 209 210 211 212 213 214 215 216 217 |
|
FilterAction
Bases: QueryAction
Filter Actions is populated by queryset when filter() is called.
All required params are extracted but kept raw until actual filter clause value is required -> then the action is converted into text() clause.
Extracted in order to easily change table prefixes on complex relations.
Source code in ormar\queryset\actions\filter_action.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
get_text_clause()
Escapes characters if it's required. Substitutes values of the models if value is a ormar Model with its pk value. Compiles the clause.
Returns:
Type | Description |
---|---|
sqlalchemy.sql.elements.TextClause
|
complied and escaped clause |
Source code in ormar\queryset\actions\filter_action.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
has_escaped_characters()
Check if value is a string that contains characters to escape
Source code in ormar\queryset\actions\filter_action.py
63 64 65 66 67 |
|
FilterQuery
Modifies the select query with given list of where/filter clauses.
Source code in ormar\queryset\queries\filter_query.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
apply(expr)
Applies all filter clauses if set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expr |
select
|
query to modify |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.sql.selectable.Select
|
modified query |
Source code in ormar\queryset\queries\filter_query.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
LimitQuery
Modifies the select query with limit clause.
Source code in ormar\queryset\queries\limit_query.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
apply(expr)
Applies the limit clause.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expr |
select
|
query to modify |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.sql.selectable.Select
|
modified query |
Source code in ormar\queryset\queries\limit_query.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
OffsetQuery
Modifies the select query with offset if set
Source code in ormar\queryset\queries\offset_query.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
apply(expr)
Applies the offset clause.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expr |
select
|
query to modify |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.sql.selectable.Select
|
modified query |
Source code in ormar\queryset\queries\offset_query.py
14 15 16 17 18 19 20 21 22 23 24 25 |
|
OrderAction
Bases: QueryAction
Order Actions is populated by queryset when order_by() is called.
All required params are extracted but kept raw until actual filter clause value is required -> then the action is converted into text() clause.
Extracted in order to easily change table prefixes on complex relations.
Source code in ormar\queryset\actions\order_action.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
check_if_filter_apply(target_model, alias)
Checks filter conditions to find if they apply to current join.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_model |
Type[Model]
|
model which is now processed |
required |
alias |
str
|
prefix of the relation |
required |
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\queryset\actions\order_action.py
103 104 105 106 107 108 109 110 111 112 113 114 |
|
get_field_name_text()
Escapes characters if it's required. Substitutes values of the models if value is a ormar Model with its pk value. Compiles the clause.
Returns:
Type | Description |
---|---|
sqlalchemy.sql.elements.TextClause
|
complied and escaped clause |
Source code in ormar\queryset\actions\order_action.py
45 46 47 48 49 50 51 52 53 54 55 |
|
get_min_or_max()
Used in limit sub queries where you need to use aggregated functions in order to order by columns not included in group by. For postgres bool field it's using bool_or function as aggregates does not work with this type of columns.
Returns:
Type | Description |
---|---|
sqlalchemy.sql.elements.TextClause
|
min or max function to order |
Source code in ormar\queryset\actions\order_action.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
get_text_clause()
Escapes characters if it's required. Substitutes values of the models if value is a ormar Model with its pk value. Compiles the clause.
Returns:
Type | Description |
---|---|
sqlalchemy.sql.elements.TextClause
|
complied and escaped clause |
Source code in ormar\queryset\actions\order_action.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
OrderQuery
Modifies the select query with given list of order_by clauses.
Source code in ormar\queryset\queries\order_query.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
apply(expr)
Applies all order_by clauses if set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
expr |
select
|
query to modify |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.sql.selectable.Select
|
modified query |
Source code in ormar\queryset\queries\order_query.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
QuerySet
Bases: Generic[T]
Main class to perform database queries, exposed on each model as objects attribute.
Source code in ormar\queryset\queryset.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 |
|
database: databases.Database
property
Shortcut to models database from OrmarConfig class.
Returns:
Type | Description |
---|---|
databases.Database
|
database |
model: Type[T]
property
Shortcut to model class set on QuerySet.
Returns:
Type | Description |
---|---|
Type[Model]
|
model class |
model_config: OrmarConfig
property
Shortcut to model class OrmarConfig set on QuerySet model.
Returns:
Type | Description |
---|---|
model's OrmarConfig
|
OrmarConfig of the model |
table: sqlalchemy.Table
property
Shortcut to models table from OrmarConfig.
Returns:
Type | Description |
---|---|
sqlalchemy.Table
|
database table |
all(*args, **kwargs)
async
Returns all rows from a database for given model for set filter options.
Passing args and/or kwargs is a shortcut and equals to calling
filter(*args, **kwargs).all()
.
If there are no rows meeting the criteria an empty list is returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
List[Model]
|
list of returned models |
Source code in ormar\queryset\queryset.py
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 |
|
avg(columns)
async
Returns avg value of columns for rows matching the given criteria
(applied with filter
and exclude
if set before).
Returns:
Type | Description |
---|---|
Union[int, float, List]
|
avg value of columns |
Source code in ormar\queryset\queryset.py
768 769 770 771 772 773 774 775 776 777 778 |
|
build_select_expression(limit=None, offset=None, order_bys=None)
Constructs the actual database query used in the QuerySet. If any of the params is not passed the QuerySet own value is used.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
limit |
Optional[int]
|
number to limit the query |
None
|
offset |
Optional[int]
|
number to offset by |
None
|
order_bys |
Optional[List]
|
list of order-by fields names |
None
|
Returns:
Type | Description |
---|---|
sqlalchemy.sql.selectable.Select
|
built sqlalchemy select expression |
Source code in ormar\queryset\queryset.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
|
bulk_create(objects)
async
Performs a bulk create in one database session to speed up the process.
Allows you to create multiple objects at once.
A valid list of Model
objects needs to be passed.
Bulk operations do not send signals.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
objects |
List[T]
|
list of ormar models already initialized and ready to save. |
required |
Source code in ormar\queryset\queryset.py
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 |
|
bulk_update(objects, columns=None)
async
Performs bulk update in one database session to speed up the process.
Allows you to update multiple instance at once.
All Models
passed need to have primary key column populated.
You can also select which fields to update by passing columns
list
as a list of string names.
Bulk operations do not send signals.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
objects |
List[T]
|
list of ormar models |
required |
columns |
Optional[List[str]]
|
list of columns to update |
None
|
Source code in ormar\queryset\queryset.py
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 |
|
check_single_result_rows_count(rows)
staticmethod
Verifies if the result has one and only one row.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rows |
Sequence[Optional[T]]
|
one element list of Models |
required |
Source code in ormar\queryset\queryset.py
234 235 236 237 238 239 240 241 242 243 244 245 |
|
count(distinct=True)
async
Returns number of rows matching the given criteria
(applied with filter
and exclude
if set before).
If distinct
is True
(the default), this will return
the number of primary rows selected. If False
,
the count will be the total number of rows returned
(including extra rows for one-to-many
or many-to-many
left select_related
table joins).
False
is the legacy (buggy) behavior for workflows that depend on it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
distinct |
bool
|
flag if the primary table rows should be distinct or not |
True
|
Returns:
Type | Description |
---|---|
int
|
number of rows |
Source code in ormar\queryset\queryset.py
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 |
|
create(**kwargs)
async
Creates the model instance, saves it in a database and returns the updates model (with pk populated if not passed and autoincrement is set).
The allowed kwargs are Model
fields names and proper value types.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
created model |
Source code in ormar\queryset\queryset.py
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 |
|
delete(*args, each=False, **kwargs)
async
Deletes from the model table after applying the filters from kwargs.
You have to either pass a filter to narrow down a query or explicitly pass each=True flag to affect whole table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
each |
bool
|
flag if whole table should be affected if no filter is passed |
False
|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
int
|
number of deleted rows |
Source code in ormar\queryset\queryset.py
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 |
|
exclude(*args, **kwargs)
Works exactly the same as filter and all modifiers (suffixes) are the same, but returns a not condition.
So if you use filter(name='John')
which is where name = 'John'
in SQL,
the exclude(name='John')
equals to where name <> 'John'
Note that all conditions are joined so if you pass multiple values it becomes a union of conditions.
exclude(name='John', age>=35)
will become
where not (name='John' and age>=35)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
QuerySet
|
filtered QuerySet |
Source code in ormar\queryset\queryset.py
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
|
exclude_fields(columns)
With exclude_fields()
you can select subset of model columns that will
be excluded to limit the data load.
It's the opposite of fields()
method so check documentation above
to see what options are available.
Especially check above how you can pass also nested dictionaries and sets as a mask to exclude fields from whole hierarchy.
Note that fields()
and exclude_fields()
works both for main models
(on normal queries like get
, all
etc.)
as well as select_related
and prefetch_related
models
(with nested notation).
Mandatory fields cannot be excluded as it will raise ValidationError
,
to exclude a field it has to be nullable.
Pk column cannot be excluded - it's always auto added even if explicitly excluded.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
columns |
Union[List, str, Set, Dict]
|
columns to exclude |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
|
exists()
async
Returns a bool value to confirm if there are rows matching the given criteria
(applied with filter
and exclude
if set).
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\queryset\queryset.py
679 680 681 682 683 684 685 686 687 688 689 |
|
fields(columns, _is_exclude=False)
With fields()
you can select subset of model columns to limit the data load.
Note that fields()
and exclude_fields()
works both for main models
(on normal queries like get
, all
etc.)
as well as select_related
and prefetch_related
models (with nested notation).
You can select specified fields by passing a str, List[str], Set[str] or
dict
with nested definition.
To include related models use notation
{related_name}__{column}[__{optional_next} etc.]
.
fields()
can be called several times, building up the columns to select.
If you include related models into select_related()
call but you won't specify
columns for those models in fields - implies a list of all fields for
those nested models.
Mandatory fields cannot be excluded as it will raise ValidationError
,
to exclude a field it has to be nullable.
Pk column cannot be excluded - it's always auto added even if not explicitly included.
You can also pass fields to include as dictionary or set.
To mark a field as included in a dictionary use it's name as key and ellipsis as value.
To traverse nested models use nested dictionaries.
To include fields at last level instead of nested dictionary a set can be used.
To include whole nested model specify model related field name and ellipsis.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_is_exclude |
bool
|
flag if it's exclude or include operation |
False
|
columns |
Union[List, str, Set, Dict]
|
columns to include |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
|
filter(*args, _exclude=False, **kwargs)
Allows you to filter by any Model
attribute/field
as well as to fetch instances, with a filter across an FK relationship.
You can use special filter suffix to change the filter operands:
- exact - like
album__name__exact='Malibu'
(exact match) - iexact - like
album__name__iexact='malibu'
(exact match case insensitive) - contains - like
album__name__contains='Mal'
(sql like) - icontains - like
album__name__icontains='mal'
(sql like case insensitive) - in - like
album__name__in=['Malibu', 'Barclay']
(sql in) - isnull - like
album__name__isnull=True
(sql is null) (isnotnullalbum__name__isnull=False
(sql is not null)) - gt - like
position__gt=3
(sql >) - gte - like
position__gte=3
(sql >=) - lt - like
position__lt=3
(sql <) - lte - like
position__lte=3
(sql <=) - startswith - like
album__name__startswith='Mal'
(exact start match) - istartswith - like
album__name__istartswith='mal'
(case insensitive) - endswith - like
album__name__endswith='ibu'
(exact end match) - iendswith - like
album__name__iendswith='IBU'
(case insensitive)
Note that you can also use python style filters - check the docs!
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_exclude |
bool
|
flag if it should be exclude or filter |
False
|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
QuerySet
|
filtered QuerySet |
Source code in ormar\queryset\queryset.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
|
first(*args, **kwargs)
async
Gets the first row from the db ordered by primary key column ascending.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
returned model |
Raises:
Type | Description |
---|---|
NoMatch
|
if no rows are returned |
MultipleMatches
|
if more than 1 row is returned. |
Source code in ormar\queryset\queryset.py
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 |
|
first_or_none(*args, **kwargs)
async
Gets the first row from the db ordered by primary key column ascending.
If no match is found None will be returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
returned model |
Raises:
Type | Description |
---|---|
MultipleMatches
|
if more than 1 row is returned. |
Source code in ormar\queryset\queryset.py
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 |
|
get(*args, **kwargs)
async
Gets the first row from the db meeting the criteria set by kwargs.
If no criteria set it will return the last row in db sorted by pk.
Passing a criteria is actually calling filter(args, *kwargs) method described below.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
returned model |
Raises:
Type | Description |
---|---|
NoMatch
|
if no rows are returned |
MultipleMatches
|
if more than 1 row is returned. |
Source code in ormar\queryset\queryset.py
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
|
get_or_create(_defaults=None, *args, **kwargs)
async
Combination of create and get methods.
Tries to get a row meeting the criteria for kwargs
and if NoMatch
exception is raised
it creates a new one with given kwargs and _defaults.
Passing a criteria is actually calling filter(args, *kwargs) method described below.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
_defaults |
Optional[Dict[str, Any]]
|
default values for creating object |
None
|
Returns:
Type | Description |
---|---|
Tuple("T", bool)
|
model instance and a boolean |
Source code in ormar\queryset\queryset.py
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 |
|
get_or_none(*args, **kwargs)
async
Gets the first row from the db meeting the criteria set by kwargs.
If no criteria set it will return the last row in db sorted by pk.
Passing a criteria is actually calling filter(args, *kwargs) method described below.
If no match is found None will be returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
returned model |
Raises:
Type | Description |
---|---|
MultipleMatches
|
if more than 1 row is returned. |
Source code in ormar\queryset\queryset.py
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 |
|
iterate(*args, **kwargs)
async
Return async iterable generator for all rows from a database for given model.
Passing args and/or kwargs is a shortcut and equals to calling
filter(*args, **kwargs).iterate()
.
If there are no rows meeting the criteria an empty async generator is returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
AsyncGenerator[Model]
|
asynchronous iterable generator of returned models |
Source code in ormar\queryset\queryset.py
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 |
|
limit(limit_count, limit_raw_sql=None)
You can limit the results to desired number of parent models.
To limit the actual number of database query rows instead of number of main
models use the limit_raw_sql
parameter flag, and set it to True
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
limit_raw_sql |
Optional[bool]
|
flag if raw sql should be limited |
None
|
limit_count |
int
|
number of models to limit |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 |
|
max(columns)
async
Returns max value of columns for rows matching the given criteria
(applied with filter
and exclude
if set before).
Returns:
Type | Description |
---|---|
Any
|
max value of column(s) |
Source code in ormar\queryset\queryset.py
732 733 734 735 736 737 738 739 740 741 742 |
|
min(columns)
async
Returns min value of columns for rows matching the given criteria
(applied with filter
and exclude
if set before).
Returns:
Type | Description |
---|---|
Any
|
min value of column(s) |
Source code in ormar\queryset\queryset.py
744 745 746 747 748 749 750 751 752 753 754 |
|
offset(offset, limit_raw_sql=None)
You can also offset the results by desired number of main models.
To offset the actual number of database query rows instead of number of main
models use the limit_raw_sql
parameter flag, and set it to True
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
limit_raw_sql |
Optional[bool]
|
flag if raw sql should be offset |
None
|
offset |
int
|
numbers of models to offset |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 |
|
order_by(columns)
With order_by()
you can order the results from database based on your
choice of fields.
You can provide a string with field name or list of strings with fields names.
Ordering in sql will be applied in order of names you provide in order_by.
By default if you do not provide ordering ormar
explicitly orders by
all primary keys
If you are sorting by nested models that causes that the result rows are
unsorted by the main model ormar
will combine those children rows into
one main model.
The main model will never duplicate in the result
To order by main model field just provide a field name
To sort on nested models separate field names with dunder '__'.
You can sort this way across all relation types -> ForeignKey
,
reverse virtual FK and ManyToMany
fields.
To sort in descending order provide a hyphen in front of the field name
Parameters:
Name | Type | Description | Default |
---|---|---|---|
columns |
Union[List, str, OrderAction]
|
columns by which models should be sorted |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
|
paginate(page, page_size=20)
You can paginate the result which is a combination of offset and limit clauses. Limit is set to page size and offset is set to (page-1) * page_size.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
page_size |
int
|
numbers of items per page |
20
|
page |
int
|
page number |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 |
|
prefetch_related(related)
Allows to prefetch related models during query - but opposite to
select_related
each subsequent model is fetched in a separate database query.
With prefetch_related
always one query per Model is run against the
database, meaning that you will have multiple queries executed one
after another.
To fetch related model use ForeignKey
names.
To chain related Models
relation use double underscores between names.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
related |
Union[List, str, FieldAccessor]
|
list of relation field names, can be linked by '__' to nest |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
|
rebuild_self(filter_clauses=None, exclude_clauses=None, select_related=None, limit_count=None, offset=None, excludable=None, order_bys=None, prefetch_related=None, limit_raw_sql=None, proxy_source_model=None)
Method that returns new instance of queryset based on passed params, all not passed params are taken from current values.
Source code in ormar\queryset\queryset.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
|
select_all(follow=False)
By default adds only directly related models.
If follow=True is set it adds also related models of related models.
To not get stuck in an infinite loop as related models also keep a relation to parent model visited models set is kept.
That way already visited models that are nested are loaded, but the load do not follow them inside. So Model A -> Model B -> Model C -> Model A -> Model X will load second Model A but will never follow into Model X. Nested relations of those kind need to be loaded manually.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
follow |
bool
|
flag to trigger deep save - by default only directly related models are saved with follow=True also related models of related models are saved |
False
|
Returns:
Type | Description |
---|---|
Model
|
reloaded Model |
Source code in ormar\queryset\queryset.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
|
select_related(related)
Allows to prefetch related models during the same query.
With select_related
always only one query is run against the database,
meaning that one (sometimes complicated) join is generated and later nested
models are processed in python.
To fetch related model use ForeignKey
names.
To chain related Models
relation use double underscores between names.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
related |
Union[List, str, FieldAccessor]
|
list of relation field names, can be linked by '__' to nest |
required |
Returns:
Type | Description |
---|---|
QuerySet
|
QuerySet |
Source code in ormar\queryset\queryset.py
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
|
sum(columns)
async
Returns sum value of columns for rows matching the given criteria
(applied with filter
and exclude
if set before).
Returns:
Type | Description |
---|---|
int
|
sum value of columns |
Source code in ormar\queryset\queryset.py
756 757 758 759 760 761 762 763 764 765 766 |
|
update(each=False, **kwargs)
async
Updates the model table after applying the filters from kwargs.
You have to either pass a filter to narrow down a query or explicitly pass each=True flag to affect whole table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
each |
bool
|
flag if whole table should be affected if no filter is passed |
False
|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
int
|
number of updated rows |
Source code in ormar\queryset\queryset.py
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 |
|
update_or_create(**kwargs)
async
Updates the model, or in case there is no match in database creates a new one.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
Model
|
updated or created model |
Source code in ormar\queryset\queryset.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 |
|
values(fields=None, exclude_through=False, _as_dict=True, _flatten=False)
async
Return a list of dictionaries with column values in order of the fields passed or all fields from queried models.
To filter for given row use filter/exclude methods before values, to limit number of rows use limit/offset or paginate before values.
Note that it always return a list even for one row from database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
exclude_through |
bool
|
flag if through models should be excluded |
False
|
_flatten |
bool
|
internal parameter to flatten one element tuples |
False
|
_as_dict |
bool
|
internal parameter if return dict or tuples |
True
|
fields |
Union[List, str, Set, Dict, None]
|
field name or list of field names to extract from db |
None
|
Source code in ormar\queryset\queryset.py
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
|
values_list(fields=None, flatten=False, exclude_through=False)
async
Return a list of tuples with column values in order of the fields passed or all fields from queried models.
When one field is passed you can flatten the list of tuples into list of values of that single field.
To filter for given row use filter/exclude methods before values, to limit number of rows use limit/offset or paginate before values.
Note that it always return a list even for one row from database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
exclude_through |
bool
|
flag if through models should be excluded |
False
|
fields |
Union[List, str, Set, Dict, None]
|
field name or list of field names to extract from db |
None
|
flatten |
bool
|
when one field is passed you can flatten the list of tuples |
False
|
Source code in ormar\queryset\queryset.py
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 |
|
SelectAction
Bases: QueryAction
Order Actions is populated by queryset when order_by() is called.
All required params are extracted but kept raw until actual filter clause value is required -> then the action is converted into text() clause.
Extracted in order to easily change table prefixes on complex relations.
Source code in ormar\queryset\actions\select_action.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
|
and_(*args, **kwargs)
Construct and filter from nested groups and keyword arguments
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args |
FilterGroup
|
nested filter groups |
()
|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup ready to be resolved |
Source code in ormar\queryset\clause.py
147 148 149 150 151 152 153 154 155 156 157 158 |
|
or_(*args, **kwargs)
Construct or filter from nested groups and keyword arguments
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args |
FilterGroup
|
nested filter groups |
()
|
kwargs |
Any
|
fields names and proper value types |
{}
|
Returns:
Type | Description |
---|---|
ormar.queryset.clause.FilterGroup
|
FilterGroup ready to be resolved |
Source code in ormar\queryset\clause.py
133 134 135 136 137 138 139 140 141 142 143 144 |
|