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

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

HOLI-9793, HOLI-10970: expose V2 versions of matched topics and skills for recommendations in graphql API
parent f733953c
No related branches found
No related tags found
No related merge requests found
...@@ -96,11 +96,19 @@ const typeDefs = ` ...@@ -96,11 +96,19 @@ 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) 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]
"""
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) 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]
"""
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. 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