Django ORM - query depending on through table
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
here is my data model:
class User(Model):
name = models.CharField(max_length=255)
teams = models.ManyToManyField(Team, through=UserTeam, related_name='users')
class Team(Model):
name = models.CharField(max_length=255)
class UserTeam(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE)
team = models.ForeignKey(Team, on_delete=models.CASCADE)
is_special = models.BooleanField(default=True)
When i query for all users, i get a result like this (json result in rest api:
'name': 'user-1',
'teams': [
'name': 'team-1',
,
'name': 'team-2',
]
What i want to achieve is, i want to get only the the teams where the is_special flag is set to true for the user and team.
e.g. When a user is in two teams and one team has is_special flag set to false, then this team should be excluded from the result above...
Thats why i included in my user serializer:
teams = TeamSerializer(read_only=True, many=True)
def get_teams(self, obj):
teams = Team.objects.filter(
userteam__user=self.context['request'].user,
userteam__is_special=True
)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
But i still get the same result...
any ideas or suggestions?
thanks!
django orm django-rest-framework manytomanyfield
add a comment |
here is my data model:
class User(Model):
name = models.CharField(max_length=255)
teams = models.ManyToManyField(Team, through=UserTeam, related_name='users')
class Team(Model):
name = models.CharField(max_length=255)
class UserTeam(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE)
team = models.ForeignKey(Team, on_delete=models.CASCADE)
is_special = models.BooleanField(default=True)
When i query for all users, i get a result like this (json result in rest api:
'name': 'user-1',
'teams': [
'name': 'team-1',
,
'name': 'team-2',
]
What i want to achieve is, i want to get only the the teams where the is_special flag is set to true for the user and team.
e.g. When a user is in two teams and one team has is_special flag set to false, then this team should be excluded from the result above...
Thats why i included in my user serializer:
teams = TeamSerializer(read_only=True, many=True)
def get_teams(self, obj):
teams = Team.objects.filter(
userteam__user=self.context['request'].user,
userteam__is_special=True
)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
But i still get the same result...
any ideas or suggestions?
thanks!
django orm django-rest-framework manytomanyfield
add a comment |
here is my data model:
class User(Model):
name = models.CharField(max_length=255)
teams = models.ManyToManyField(Team, through=UserTeam, related_name='users')
class Team(Model):
name = models.CharField(max_length=255)
class UserTeam(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE)
team = models.ForeignKey(Team, on_delete=models.CASCADE)
is_special = models.BooleanField(default=True)
When i query for all users, i get a result like this (json result in rest api:
'name': 'user-1',
'teams': [
'name': 'team-1',
,
'name': 'team-2',
]
What i want to achieve is, i want to get only the the teams where the is_special flag is set to true for the user and team.
e.g. When a user is in two teams and one team has is_special flag set to false, then this team should be excluded from the result above...
Thats why i included in my user serializer:
teams = TeamSerializer(read_only=True, many=True)
def get_teams(self, obj):
teams = Team.objects.filter(
userteam__user=self.context['request'].user,
userteam__is_special=True
)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
But i still get the same result...
any ideas or suggestions?
thanks!
django orm django-rest-framework manytomanyfield
here is my data model:
class User(Model):
name = models.CharField(max_length=255)
teams = models.ManyToManyField(Team, through=UserTeam, related_name='users')
class Team(Model):
name = models.CharField(max_length=255)
class UserTeam(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE)
team = models.ForeignKey(Team, on_delete=models.CASCADE)
is_special = models.BooleanField(default=True)
When i query for all users, i get a result like this (json result in rest api:
'name': 'user-1',
'teams': [
'name': 'team-1',
,
'name': 'team-2',
]
What i want to achieve is, i want to get only the the teams where the is_special flag is set to true for the user and team.
e.g. When a user is in two teams and one team has is_special flag set to false, then this team should be excluded from the result above...
Thats why i included in my user serializer:
teams = TeamSerializer(read_only=True, many=True)
def get_teams(self, obj):
teams = Team.objects.filter(
userteam__user=self.context['request'].user,
userteam__is_special=True
)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
But i still get the same result...
any ideas or suggestions?
thanks!
django orm django-rest-framework manytomanyfield
django orm django-rest-framework manytomanyfield
edited Nov 14 '18 at 10:06
Steve Jalim
9,9652845
9,9652845
asked Nov 14 '18 at 9:30
Creative crypterCreative crypter
55911334
55911334
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You might get more success approaching this from the through table.
I haven't tested this, and it's not optimal performance, but:
teams = TeamSerializer(read_only=True, many=True)
...
def get_teams(self, obj):
user_teams = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
)
teams = [ut.team for ut in user_teams]
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
Or, trying to pull a bit less from the DB:
def get_teams(self, obj):
team_ids = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
).values_list('team_id', flat=True)
teams = Team.objects.filter(id__in=team_ids)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53296887%2fdjango-orm-query-depending-on-through-table%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You might get more success approaching this from the through table.
I haven't tested this, and it's not optimal performance, but:
teams = TeamSerializer(read_only=True, many=True)
...
def get_teams(self, obj):
user_teams = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
)
teams = [ut.team for ut in user_teams]
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
Or, trying to pull a bit less from the DB:
def get_teams(self, obj):
team_ids = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
).values_list('team_id', flat=True)
teams = Team.objects.filter(id__in=team_ids)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
add a comment |
You might get more success approaching this from the through table.
I haven't tested this, and it's not optimal performance, but:
teams = TeamSerializer(read_only=True, many=True)
...
def get_teams(self, obj):
user_teams = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
)
teams = [ut.team for ut in user_teams]
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
Or, trying to pull a bit less from the DB:
def get_teams(self, obj):
team_ids = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
).values_list('team_id', flat=True)
teams = Team.objects.filter(id__in=team_ids)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
add a comment |
You might get more success approaching this from the through table.
I haven't tested this, and it's not optimal performance, but:
teams = TeamSerializer(read_only=True, many=True)
...
def get_teams(self, obj):
user_teams = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
)
teams = [ut.team for ut in user_teams]
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
Or, trying to pull a bit less from the DB:
def get_teams(self, obj):
team_ids = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
).values_list('team_id', flat=True)
teams = Team.objects.filter(id__in=team_ids)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
You might get more success approaching this from the through table.
I haven't tested this, and it's not optimal performance, but:
teams = TeamSerializer(read_only=True, many=True)
...
def get_teams(self, obj):
user_teams = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
)
teams = [ut.team for ut in user_teams]
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
Or, trying to pull a bit less from the DB:
def get_teams(self, obj):
team_ids = UserTeam.objects.filter(
user=self.context['request'].user,
is_special=True
).values_list('team_id', flat=True)
teams = Team.objects.filter(id__in=team_ids)
serializer = UserSerializer(instance=teams, many=True)
return serializer.data
edited Nov 19 '18 at 22:49
answered Nov 14 '18 at 10:13
Steve JalimSteve Jalim
9,9652845
9,9652845
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53296887%2fdjango-orm-query-depending-on-through-table%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown