Skip to content
Snippets Groups Projects
Commit da1ac62a authored by Stephanie Freitag's avatar Stephanie Freitag
Browse files

Merge branch 'HOLI-9793-HOLI-10970-add-matched-terms-v2' into 'main'

HOLI-9793, HOLI-10970: expose V2 versions of matched topics and skills for...

See merge request app/holi-app-volunteering!89
parents 940032ef 7f785828
No related branches found
No related tags found
No related merge requests found
......@@ -95,12 +95,20 @@ const typeDefs = `
"""
Contains the slugs of matched topics. The order is defined as follows: 1) topics that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence)
"""
matchedTopics: [String]
matchedTopics: [String] @deprecated(reason: "Use matchedTopicsV2 instead. (since v1.51)")
"""
Contains the V2 slugs of matched topics. The order is defined as follows: 1) topics that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence)
"""
matchedTopicsV2: [String]
"""
Contains the slugs of matched skills. The order is defined as follows: 1) skills that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence)
"""
matchedSkills: [String]
matchedSkills: [String] @deprecated(reason: "Use matchedSkillsV2 instead. (since v1.51)")
"""
Contains the V2 slugs of matched skills. The order is defined as follows: 1) skills that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence)
"""
matchedSkillsV2: [String]
"""
Contains the distance (in meters) between the engagement and the location given in the query.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment