Hi,
what does this warning mean?
Graph[WARNING] Performing a FindObject on a BASIC attribute (10)
Is something related for example to this?
relType = graph->NewEdgeType(RelationshipType, CNode, CNode);
RSText = graph->NewAttribute(relType, L"RSTEXT", String, Basic);
RDataset = graph->NewAttribute(relType, L"RDATASET", String, Indexed);
attr_t RSTextId = graph->FindAttribute(relType, L"RSTEXT");
std::wcout << "RSTextId= " << RSTextId << std::endl;
value->SetString(RelSurfaceText);
If this is the case, is there a better and safer way to check if the attribute L"RSTEXT" is already present for the specific edgeType?
Frank