Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-okuna
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-okuna
Commits
fb2b7142
Commit
fb2b7142
authored
1 week ago
by
Stephanie Freitag
Browse files
Options
Downloads
Patches
Plain Diff
HOLI-11291: mark sdgs as deprecated
parent
5973cbc5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openbook_auth/schema/types.py
+5
-2
5 additions, 2 deletions
openbook_auth/schema/types.py
openbook_communities/schema/types.py
+11
-3
11 additions, 3 deletions
openbook_communities/schema/types.py
openbook_terms/schema/queries.py
+1
-1
1 addition, 1 deletion
openbook_terms/schema/queries.py
with
17 additions
and
6 deletions
openbook_auth/schema/types.py
+
5
−
2
View file @
fb2b7142
...
...
@@ -38,7 +38,10 @@ class UpdateAuthenticatedUserInput:
strawberry
.
argument
(
description
=
"
Deprecated since 1.52. Use interests_v2 instead.
"
),
]
=
strawberry
.
UNSET
interests_v2
:
Optional
[
List
[
str
]]
=
strawberry
.
UNSET
sdgs
:
Optional
[
List
[
Optional
[
uuid
.
UUID
]]]
=
strawberry
.
UNSET
sdgs
:
Annotated
[
Optional
[
List
[
Optional
[
uuid
.
UUID
]]],
strawberry
.
argument
(
description
=
"
Deprecated since 1.53.
"
),
]
=
strawberry
.
UNSET
skills
:
Annotated
[
Optional
[
List
[
Optional
[
uuid
.
UUID
]]],
strawberry
.
argument
(
description
=
"
Deprecated since 1.52. Use skills_v2 instead.
"
),
...
...
@@ -112,7 +115,7 @@ class User:
def
interests_v2
(
self
)
->
List
[
Optional
[
str
]]:
return
self
.
profile
.
interests_v2
@strawberry_django.field
(
select_related
=
[
"
profile__sdgs
"
])
@strawberry_django.field
(
select_related
=
[
"
profile__sdgs
"
]
,
deprecation_reason
=
"
Deprecated since 1.53.
"
)
def
sdgs
(
self
)
->
List
[
Optional
[
SDG
]]:
return
self
.
profile
.
sdgs
.
all
().
order_by
(
"
number
"
)
...
...
This diff is collapsed.
Click to expand it.
openbook_communities/schema/types.py
+
11
−
3
View file @
fb2b7142
...
...
@@ -54,7 +54,10 @@ class ValidateSpaceInput:
]
=
strawberry
.
UNSET
topics_v2
:
Optional
[
List
[
str
]]
=
strawberry
.
UNSET
cover
:
Optional
[
Upload
]
=
strawberry
.
UNSET
sdgs
:
Optional
[
List
[
Optional
[
uuid
.
UUID
]]]
=
strawberry
.
UNSET
sdgs
:
Annotated
[
Optional
[
List
[
Optional
[
uuid
.
UUID
]]],
strawberry
.
argument
(
description
=
"
Deprecated since 1.53.
"
),
]
=
strawberry
.
UNSET
location
:
Optional
[
str
]
=
strawberry
.
UNSET
...
...
@@ -174,7 +177,10 @@ class UpdateSpaceInput:
topics_v2
:
Optional
[
List
[
str
]]
=
strawberry
.
UNSET
cover
:
Optional
[
Upload
]
=
strawberry
.
UNSET
avatar
:
Optional
[
Upload
]
=
strawberry
.
UNSET
sdgs
:
Optional
[
List
[
Optional
[
uuid
.
UUID
]]]
=
strawberry
.
UNSET
sdgs
:
Annotated
[
Optional
[
List
[
Optional
[
uuid
.
UUID
]]],
strawberry
.
argument
(
description
=
"
Deprecated since 1.53.
"
),
]
=
strawberry
.
UNSET
location
:
Optional
[
str
]
=
strawberry
.
UNSET
geolocation
:
Optional
[
GeolocationPointInput
]
=
strawberry
.
UNSET
contact_description
:
Optional
[
str
]
=
strawberry
.
UNSET
...
...
@@ -285,7 +291,9 @@ class Space:
deprecation_reason
=
"
Deprecated since version 1.52, use topics_v2 instead.
"
,
default
=
None
)
topics_v2
:
List
[
str
]
sdgs
:
List
[
Optional
[
SDG
]]
sdgs
:
List
[
Optional
[
SDG
]]
=
strawberry_django
.
field
(
deprecation_reason
=
"
Deprecated since version 1.53.
"
,
default
=
None
)
contact_description
:
Optional
[
str
]
contact_email
:
Optional
[
str
]
contact_phone
:
Optional
[
str
]
...
...
This diff is collapsed.
Click to expand it.
openbook_terms/schema/queries.py
+
1
−
1
View file @
fb2b7142
...
...
@@ -19,7 +19,7 @@ class Query:
def
topics
(
self
,
offset
:
int
=
0
,
limit
:
int
=
50
)
->
Paged
[
Topic
]:
return
Paged
.
of
(
TopicModel
.
objects
.
all
().
order_by
(
"
title
"
),
offset
,
limit
)
@strawberry_django.field
()
@strawberry_django.field
(
deprecation_reason
=
"
Deprecated since 1.53.
"
)
def
sdgs
(
self
,
offset
:
int
=
0
,
limit
:
int
=
50
)
->
Paged
[
SDG
]:
return
Paged
.
of
(
SDG_MODEL
.
objects
.
all
().
order_by
(
"
number
"
),
offset
,
limit
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment