Django queryset filtering
I have 2 main entities in my models.py:
class IPGroup(models.Model):
name = models.CharField(max_length=50, unique=True)
address = models.CharField(max_length=50, unique=True)
class Tag(models.Model):
name = models.CharField(max_length=100)
value = models.CharField(max_length=100)
These two tables are linked through a 3rd through table as follows:
class IPGroupToTag(models.Model):
ip_group = models.ForeignKey(IPGroup)
tag = models.ForeignKey(Tag)
My requirement is to find all the tags with the name "SecurityZone" when the only input I have is the name of the IPGroup. My attempt is as follows:
ip_group_id = IPGroup.objects.get(name="test_ip_group").id
zone = IPGroupToTag.objects.filter(ip_group_id=ip_group_id).values('tag__name')
which gives me the following Queryset:
<QuerySet [{'tag__name': 'Title'}, {'tag__name': 'Site'}, {'tag__name': 'SecurityZone'}, {'tag__name': 'DataCenter'}, {'tag__name': 'Pod'}]>
How do I then find the id of the tag with the name SecurityZone and then find its value
python django django-queryset
add a comment |
I have 2 main entities in my models.py:
class IPGroup(models.Model):
name = models.CharField(max_length=50, unique=True)
address = models.CharField(max_length=50, unique=True)
class Tag(models.Model):
name = models.CharField(max_length=100)
value = models.CharField(max_length=100)
These two tables are linked through a 3rd through table as follows:
class IPGroupToTag(models.Model):
ip_group = models.ForeignKey(IPGroup)
tag = models.ForeignKey(Tag)
My requirement is to find all the tags with the name "SecurityZone" when the only input I have is the name of the IPGroup. My attempt is as follows:
ip_group_id = IPGroup.objects.get(name="test_ip_group").id
zone = IPGroupToTag.objects.filter(ip_group_id=ip_group_id).values('tag__name')
which gives me the following Queryset:
<QuerySet [{'tag__name': 'Title'}, {'tag__name': 'Site'}, {'tag__name': 'SecurityZone'}, {'tag__name': 'DataCenter'}, {'tag__name': 'Pod'}]>
How do I then find the id of the tag with the name SecurityZone and then find its value
python django django-queryset
add a comment |
I have 2 main entities in my models.py:
class IPGroup(models.Model):
name = models.CharField(max_length=50, unique=True)
address = models.CharField(max_length=50, unique=True)
class Tag(models.Model):
name = models.CharField(max_length=100)
value = models.CharField(max_length=100)
These two tables are linked through a 3rd through table as follows:
class IPGroupToTag(models.Model):
ip_group = models.ForeignKey(IPGroup)
tag = models.ForeignKey(Tag)
My requirement is to find all the tags with the name "SecurityZone" when the only input I have is the name of the IPGroup. My attempt is as follows:
ip_group_id = IPGroup.objects.get(name="test_ip_group").id
zone = IPGroupToTag.objects.filter(ip_group_id=ip_group_id).values('tag__name')
which gives me the following Queryset:
<QuerySet [{'tag__name': 'Title'}, {'tag__name': 'Site'}, {'tag__name': 'SecurityZone'}, {'tag__name': 'DataCenter'}, {'tag__name': 'Pod'}]>
How do I then find the id of the tag with the name SecurityZone and then find its value
python django django-queryset
I have 2 main entities in my models.py:
class IPGroup(models.Model):
name = models.CharField(max_length=50, unique=True)
address = models.CharField(max_length=50, unique=True)
class Tag(models.Model):
name = models.CharField(max_length=100)
value = models.CharField(max_length=100)
These two tables are linked through a 3rd through table as follows:
class IPGroupToTag(models.Model):
ip_group = models.ForeignKey(IPGroup)
tag = models.ForeignKey(Tag)
My requirement is to find all the tags with the name "SecurityZone" when the only input I have is the name of the IPGroup. My attempt is as follows:
ip_group_id = IPGroup.objects.get(name="test_ip_group").id
zone = IPGroupToTag.objects.filter(ip_group_id=ip_group_id).values('tag__name')
which gives me the following Queryset:
<QuerySet [{'tag__name': 'Title'}, {'tag__name': 'Site'}, {'tag__name': 'SecurityZone'}, {'tag__name': 'DataCenter'}, {'tag__name': 'Pod'}]>
How do I then find the id of the tag with the name SecurityZone and then find its value
python django django-queryset
python django django-queryset
asked Nov 13 '18 at 7:22
AmistadAmistad
2,59062438
2,59062438
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
IPGroupToTag.objects.filter(ip_group__name='test_ip_group',tag__name='SecurityZone').values('tag__value')
this one query will do what you are trying to find
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then dofor i in variable: print(i['tag_value']
– Exprator
Nov 13 '18 at 9:10
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%2f53275817%2fdjango-queryset-filtering%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
IPGroupToTag.objects.filter(ip_group__name='test_ip_group',tag__name='SecurityZone').values('tag__value')
this one query will do what you are trying to find
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then dofor i in variable: print(i['tag_value']
– Exprator
Nov 13 '18 at 9:10
add a comment |
IPGroupToTag.objects.filter(ip_group__name='test_ip_group',tag__name='SecurityZone').values('tag__value')
this one query will do what you are trying to find
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then dofor i in variable: print(i['tag_value']
– Exprator
Nov 13 '18 at 9:10
add a comment |
IPGroupToTag.objects.filter(ip_group__name='test_ip_group',tag__name='SecurityZone').values('tag__value')
this one query will do what you are trying to find
IPGroupToTag.objects.filter(ip_group__name='test_ip_group',tag__name='SecurityZone').values('tag__value')
this one query will do what you are trying to find
answered Nov 13 '18 at 7:33
ExpratorExprator
16.2k31833
16.2k31833
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then dofor i in variable: print(i['tag_value']
– Exprator
Nov 13 '18 at 9:10
add a comment |
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then dofor i in variable: print(i['tag_value']
– Exprator
Nov 13 '18 at 9:10
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
This works really well...one final thing..the final output of is of the type Queryset as follows:<QuerySet [{'tag__value': 'core'}]>. How can i get just the value core ?
– Amistad
Nov 13 '18 at 8:26
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
Exprator..i did this..IPGroupToTag.objects.filter(ip_group__name=request["source_ip_group"], tag__name='SecurityZone').values('tag__value')[0]['tag__value']....not sure if this is the best way to do this..
– Amistad
Nov 13 '18 at 8:31
use a for loop save the query to a variable and then do
for i in variable: print(i['tag_value']– Exprator
Nov 13 '18 at 9:10
use a for loop save the query to a variable and then do
for i in variable: print(i['tag_value']– Exprator
Nov 13 '18 at 9:10
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53275817%2fdjango-queryset-filtering%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