QuerySet
class¶
edgy.QuerySet
¶
QuerySet(model_class=None, database=None, filter_clauses=None, or_clauses=None, select_related=None, prefetch_related=None, limit_count=None, limit_offset=None, batch_size=None, order_by=None, group_by=None, distinct_on=None, only_fields=None, defer_fields=None, embed_parent=None, embed_parent_filters=None, embed_sqla_row='', using_schema=None, table=None, exclude_secrets=False)
Bases: BaseQuerySet
QuerySet object used for query retrieving. Public interface
PARAMETER | DESCRIPTION |
---|---|
model_class |
TYPE:
|
database |
TYPE:
|
filter_clauses |
TYPE:
|
or_clauses |
TYPE:
|
select_related |
TYPE:
|
prefetch_related |
TYPE:
|
limit_count |
TYPE:
|
limit_offset |
TYPE:
|
batch_size |
TYPE:
|
order_by |
TYPE:
|
group_by |
TYPE:
|
distinct_on |
TYPE:
|
only_fields |
TYPE:
|
defer_fields |
TYPE:
|
embed_parent |
TYPE:
|
embed_parent_filters |
TYPE:
|
embed_sqla_row |
TYPE:
|
using_schema |
TYPE:
|
table |
TYPE:
|
exclude_secrets |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
filter_clauses
instance-attribute
¶
filter_clauses = [] if filter_clauses is None else filter_clauses
_select_related
instance-attribute
¶
_select_related = [] if select_related is None else select_related
_prefetch_related
instance-attribute
¶
_prefetch_related = [] if prefetch_related is None else prefetch_related
extract_model_references
¶
extract_model_references(extracted_values, model_class=None)
Exracts any possible model references from the EdgyModel and returns a dictionary.
PARAMETER | DESCRIPTION |
---|---|
extracted_values |
TYPE:
|
model_class |
TYPE:
|
Source code in edgy/core/db/models/mixins/model_parser.py
9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
extract_column_values
¶
extract_column_values(extracted_values, model_class=None, is_update=False, is_partial=False)
Extracts all the default values from the given fields and returns the raw value corresponding to each field.
Extract the model references.
PARAMETER | DESCRIPTION |
---|---|
extracted_values |
TYPE:
|
model_class |
TYPE:
|
is_update |
TYPE:
|
is_partial |
TYPE:
|
Source code in edgy/core/db/models/mixins/model_parser.py
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 |
|
prefetch_related
¶
prefetch_related(*prefetch)
Performs a reverse lookup for the foreignkeys. This is different from the select_related. Select related performs a follows the SQL foreign relation whereas the prefetch_related follows the python relations.
PARAMETER | DESCRIPTION |
---|---|
*prefetch |
TYPE:
|
Source code in edgy/core/db/querysets/prefetch.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
using
¶
using(schema)
Enables and switches the db schema.
Generates the registry object pointing to the desired schema using the same connection.
PARAMETER | DESCRIPTION |
---|---|
schema |
TYPE:
|
Source code in edgy/core/db/querysets/mixins.py
59 60 61 62 63 64 65 66 67 |
|
using_with_db
¶
using_with_db(connection_name, schema=None)
Enables and switches the database connection.
Generates the new queryset using the selected connection provided in the extra of the model registry.
PARAMETER | DESCRIPTION |
---|---|
connection_name |
TYPE:
|
schema |
TYPE:
|
Source code in edgy/core/db/querysets/mixins.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|
_build_order_by_expression
¶
_build_order_by_expression(order_by, expression)
Builds the order by expression
PARAMETER | DESCRIPTION |
---|---|
order_by |
TYPE:
|
expression |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
136 137 138 139 140 |
|
_build_group_by_expression
¶
_build_group_by_expression(group_by, expression)
Builds the group by expression
PARAMETER | DESCRIPTION |
---|---|
group_by |
TYPE:
|
expression |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
142 143 144 145 146 |
|
_build_filter_clauses_expression
¶
_build_filter_clauses_expression(filter_clauses, expression)
Builds the filter clauses expression
PARAMETER | DESCRIPTION |
---|---|
filter_clauses |
TYPE:
|
expression |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
148 149 150 151 152 153 154 155 |
|
_build_or_clauses_expression
¶
_build_or_clauses_expression(or_clauses, expression)
Builds the filter clauses expression
PARAMETER | DESCRIPTION |
---|---|
or_clauses |
TYPE:
|
expression |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
157 158 159 160 161 |
|
_build_select_distinct
¶
_build_select_distinct(distinct_on, expression)
Filters selects only specific fields. Leave empty to use simple distinct
PARAMETER | DESCRIPTION |
---|---|
distinct_on |
TYPE:
|
expression |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
163 164 165 166 167 168 169 |
|
_build_tables_select_from_relationship
¶
_build_tables_select_from_relationship()
Builds the tables relationships and joins. When a table contains more than one foreign key pointing to the same destination table, a lookup for the related field is made to understand from which foreign key the table is looked up from.
Source code in edgy/core/db/querysets/base.py
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 |
|
_select_from_relationship_clause_generator
staticmethod
¶
_select_from_relationship_clause_generator(foreign_key, table, reverse, former_table)
PARAMETER | DESCRIPTION |
---|---|
foreign_key |
TYPE:
|
table |
TYPE:
|
reverse |
TYPE:
|
former_table |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
_validate_only_and_defer
¶
_validate_only_and_defer()
Source code in edgy/core/db/querysets/base.py
244 245 246 |
|
_secret_recursive_names
¶
_secret_recursive_names(model_class, columns=None)
Recursively gets the names of the fields excluding the secrets.
PARAMETER | DESCRIPTION |
---|---|
model_class |
TYPE:
|
columns |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
_build_select
¶
_build_select()
Builds the query select based on the given parameters and filters.
Source code in edgy/core/db/querysets/base.py
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 |
|
_filter_query
¶
_filter_query(kwargs, exclude=False, or_=False)
PARAMETER | DESCRIPTION |
---|---|
kwargs |
TYPE:
|
exclude |
TYPE:
|
or_ |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
_validate_kwargs
¶
_validate_kwargs(**kwargs)
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
407 408 |
|
_prepare_order_by
¶
_prepare_order_by(order_by)
PARAMETER | DESCRIPTION |
---|---|
order_by |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
410 411 412 413 414 |
|
_prepare_group_by
¶
_prepare_group_by(group_by)
PARAMETER | DESCRIPTION |
---|---|
group_by |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
416 417 418 419 |
|
_prepare_fields_for_distinct
¶
_prepare_fields_for_distinct(distinct_on)
PARAMETER | DESCRIPTION |
---|---|
distinct_on |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
421 422 |
|
_embed_parent_in_result
async
¶
_embed_parent_in_result(result)
PARAMETER | DESCRIPTION |
---|---|
result |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
_get_or_cache_row
async
¶
_get_or_cache_row(row, extra_attr='')
PARAMETER | DESCRIPTION |
---|---|
row |
TYPE:
|
extra_attr |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
_clone
¶
_clone()
Return a copy of the current QuerySet that's ready for another operation.
Source code in edgy/core/db/querysets/base.py
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 |
|
_clear_cache
¶
_clear_cache(keep_result_cache=False)
PARAMETER | DESCRIPTION |
---|---|
keep_result_cache |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
503 504 505 506 507 508 509 510 511 512 513 |
|
_handle_batch
async
¶
_handle_batch(batch, queryset)
PARAMETER | DESCRIPTION |
---|---|
batch |
TYPE:
|
queryset |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
_execute_iterate
async
¶
_execute_iterate(fetch_all_at_once=False)
Executes the query, iterate.
PARAMETER | DESCRIPTION |
---|---|
fetch_all_at_once |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
_execute_all
async
¶
_execute_all()
Source code in edgy/core/db/querysets/base.py
643 644 |
|
_filter_or_exclude
¶
_filter_or_exclude(kwargs, clauses, exclude=False, or_=False)
Filters or excludes a given clause for a specific QuerySet.
PARAMETER | DESCRIPTION |
---|---|
kwargs |
TYPE:
|
clauses |
TYPE:
|
exclude |
TYPE:
|
or_ |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
|
filter
¶
filter(*clauses, **kwargs)
Filters the QuerySet by the given kwargs and clauses.
PARAMETER | DESCRIPTION |
---|---|
*clauses |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
684 685 686 687 688 689 690 691 692 |
|
all
¶
all(clear_cache=False)
Returns a cloned query with empty cache. Optionally just clear the cache and return the same query.
PARAMETER | DESCRIPTION |
---|---|
clear_cache |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
694 695 696 697 698 699 700 701 |
|
or_
¶
or_(*clauses, **kwargs)
Filters the QuerySet by the OR operand.
PARAMETER | DESCRIPTION |
---|---|
*clauses |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
703 704 705 706 707 708 709 710 711 |
|
and_
¶
and_(*clauses, **kwargs)
Filters the QuerySet by the AND operand. Alias of filter.
PARAMETER | DESCRIPTION |
---|---|
*clauses |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
713 714 715 716 717 718 719 720 721 |
|
not_
¶
not_(*clauses, **kwargs)
Filters the QuerySet by the NOT operand. Alias of exclude.
PARAMETER | DESCRIPTION |
---|---|
*clauses |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
723 724 725 726 727 728 729 730 731 |
|
exclude
¶
exclude(*clauses, **kwargs)
Exactly the same as the filter but for the exclude.
PARAMETER | DESCRIPTION |
---|---|
*clauses |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
733 734 735 736 737 738 739 740 741 |
|
exclude_secrets
¶
exclude_secrets(exclude_secrets=True)
Excludes any field that contains the secret=True
declared from being leaked.
PARAMETER | DESCRIPTION |
---|---|
exclude_secrets |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
743 744 745 746 747 748 749 750 751 752 |
|
batch_size
¶
batch_size(batch_size=None)
Set batch/chunk size. Used for iterate
PARAMETER | DESCRIPTION |
---|---|
batch_size |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
754 755 756 757 758 759 760 761 762 763 |
|
lookup
¶
lookup(term)
Broader way of searching for a given term
PARAMETER | DESCRIPTION |
---|---|
term |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 |
|
order_by
¶
order_by(*order_by)
Returns a QuerySet ordered by the given fields.
PARAMETER | DESCRIPTION |
---|---|
*order_by |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
790 791 792 793 794 795 796 |
|
reverse
¶
reverse()
Source code in edgy/core/db/querysets/base.py
798 799 800 801 802 803 |
|
limit
¶
limit(limit_count)
Returns a QuerySet limited by.
PARAMETER | DESCRIPTION |
---|---|
limit_count |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
805 806 807 808 809 810 811 |
|
offset
¶
offset(offset)
Returns a Queryset limited by the offset.
PARAMETER | DESCRIPTION |
---|---|
offset |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
813 814 815 816 817 818 819 |
|
group_by
¶
group_by(*group_by)
Returns the values grouped by the given fields.
PARAMETER | DESCRIPTION |
---|---|
*group_by |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
821 822 823 824 825 826 827 |
|
distinct
¶
distinct(*distinct_on)
Returns a queryset with distinct results.
PARAMETER | DESCRIPTION |
---|---|
*distinct_on |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
829 830 831 832 833 834 835 |
|
only
¶
only(*fields)
Returns a list of models with the selected only fields and always the primary key.
PARAMETER | DESCRIPTION |
---|---|
*fields |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 |
|
defer
¶
defer(*fields)
Returns a list of models with the selected only fields and always the primary key.
PARAMETER | DESCRIPTION |
---|---|
*fields |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
859 860 861 862 863 864 865 866 |
|
select_related
¶
select_related(related)
Returns a QuerySet that will “follow” foreign-key relationships, selecting additional related-object data when it executes its query.
This is a performance booster which results in a single more complex query but means
later use of foreign-key relationships won’t require database queries.
PARAMETER | DESCRIPTION |
---|---|
related |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 |
|
values
async
¶
values(fields=None, exclude=None, exclude_none=False, flatten=False, **kwargs)
Returns the results in a python dictionary format.
PARAMETER | DESCRIPTION |
---|---|
fields |
TYPE:
|
exclude |
TYPE:
|
exclude_none |
TYPE:
|
flatten |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
values_list
async
¶
values_list(fields=None, exclude=None, exclude_none=False, flat=False)
Returns the results in a python dictionary format.
PARAMETER | DESCRIPTION |
---|---|
fields |
TYPE:
|
exclude |
TYPE:
|
exclude_none |
TYPE:
|
flat |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
exists
async
¶
exists(**kwargs)
Returns a boolean indicating if a record exists or not.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 |
|
count
async
¶
count()
Returns an indicating the total records.
Source code in edgy/core/db/querysets/base.py
974 975 976 977 978 979 980 981 982 983 984 |
|
get_or_none
async
¶
get_or_none(**kwargs)
Fetch one object matching the parameters or returns None.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
986 987 988 989 990 991 992 993 |
|
get
async
¶
get(**kwargs)
Returns a single record based on the given kwargs.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
first
async
¶
first()
Returns the first record of a given queryset.
Source code in edgy/core/db/querysets/base.py
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 |
|
last
async
¶
last()
Returns the last record of a given queryset.
Source code in edgy/core/db/querysets/base.py
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 |
|
create
async
¶
create(**kwargs)
Creates a record in a specific table.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 |
|
bulk_create
async
¶
bulk_create(objs)
Bulk creates records in a table
PARAMETER | DESCRIPTION |
---|---|
objs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 |
|
bulk_update
async
¶
bulk_update(objs, fields)
Bulk updates records in a table.
A similar solution was suggested here: https://github.com/encode/orm/pull/148
It is thought to be a clean approach to a simple problem so it was added here and refactored to be compatible with Edgy.
PARAMETER | DESCRIPTION |
---|---|
objs |
TYPE:
|
fields |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
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 |
|
delete
async
¶
delete()
Source code in edgy/core/db/querysets/base.py
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 |
|
update
async
¶
update(**kwargs)
Updates a record in a specific table with the given kwargs.
PARAMETER | DESCRIPTION |
---|---|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 |
|
get_or_create
async
¶
get_or_create(defaults, **kwargs)
Creates a record in a specific table or updates if already exists.
PARAMETER | DESCRIPTION |
---|---|
defaults |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 |
|
update_or_create
async
¶
update_or_create(defaults, **kwargs)
Updates a record in a specific table or creates a new one.
PARAMETER | DESCRIPTION |
---|---|
defaults |
TYPE:
|
**kwargs |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 |
|
contains
async
¶
contains(instance)
Returns true if the QuerySet contains the provided object. False if otherwise.
PARAMETER | DESCRIPTION |
---|---|
instance |
TYPE:
|
Source code in edgy/core/db/querysets/base.py
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 |
|
__aiter__
async
¶
__aiter__()
Source code in edgy/core/db/querysets/base.py
1211 1212 1213 |
|