We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060561b commit 97060b0Copy full SHA for 97060b0
1 file changed
O365/utils/query.py
@@ -713,11 +713,7 @@ def select(self, *attributes: str) -> SelectFilter:
713
"""
714
select = SelectFilter()
715
for attribute in attributes:
716
- attribute = self.protocol.convert_case(attribute)
717
- if "/" in attribute:
718
- # only parent attribute can be selected
719
- attribute = attribute.split("/")[0]
720
- select.append(attribute)
+ select.append(self.protocol.convert_case(attribute))
721
return select
722
723
def expand(self, relationship: str, select: Optional[SelectFilter] = None) -> ExpandFilter:
0 commit comments