This will search for all concepts in the given vocabulary that possess the given property, regardless of the property's value.
Java Code Snippet
//Identify the vocabulary to search CodingSchemeVersionOrTag csvt = new CodingSchemeVersionOrTag(); csvt.setTag("PRODUCTION"); String scheme = "NCI Thesaurus"; CodedNodeSet cns = lbSvc.getCodingSchemeConcepts(scheme, csvt); //constrain: concept property 'GTEx_CDE' exists cns = cns.restrictToProperties(ConvenienceMethods.createLocalNameList(new String[] { "GTEx_CDE" }), null); //now get the concepts ResolvedConceptReferenceList matches = cns.resolveToList(null, null, null, 50);