You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CR1This item was processed during the first Candidate Recommendation phase.editorialThe item is editorial in nature.questionFurther information is requested
I believe I have implemented selectPaths and selectJsonLD correctly however I have a test failing that is supposed to select some of the elements of an object and drop the others. Here is the test:
so the array selection is working and making it dense.. however we are seeing the type: "C" property on the second element where I would expect to only see the id. I've traced it down pretty deep and in step 7 I am setting selectedValue properly but the selected Property already is:
{
id: "3",
type: "C",
}
Am I missing something?
The text was updated successfully, but these errors were encountered:
See createInitialSelection which is called during step 5 of selectPaths whenever a new object in the path of a pointer is selected. The id (if not a blank node identifier) and type values are always included for objects in the path of a pointer (including the final target of the pointer).
msporny
added
question
Further information is requested
CR1
This item was processed during the first Candidate Recommendation phase.
labels
Dec 8, 2024
CR1This item was processed during the first Candidate Recommendation phase.editorialThe item is editorial in nature.questionFurther information is requested
I believe I have implemented
selectPaths
andselectJsonLD
correctly however I have a test failing that is supposed to select some of the elements of an object and drop the others. Here is the test:and the resultant document is
so the array selection is working and making it dense.. however we are seeing the
type: "C"
property on the second element where I would expect to only see theid
. I've traced it down pretty deep and in step 7 I am settingselectedValue
properly but the selected Property already is:Am I missing something?
The text was updated successfully, but these errors were encountered: