After adding some custom properties to a content model I can not SELECT any of the newly added properties using a CMIS query.
After stopping Alfresco server and SOLR using the following command:
sudo /etc/init.d/tomcat6 stop \
I deleted the following folders:
alf_data/solr/workspace/SpacesStore/
alf_data/solr/archive/SpacesStore/
And deleted the contents of the following directories:
alf_data/solr/archive-SpacesStore/alfrescoModels
alf_data/solr/workspace-SpacesStore/alfrescoModels
and redployed my alfresco server.
My object Type ID is ai:bulletin and the property is ai:year
After the indeces were recreated I can successfully execute:
SELECT * FROM ai:bulletin
which returns ai:year as part of the returned data
but when trying the following query:
SELECT ai:year FROM ai:bulletin
I receive an exception and nothing is returned.
Any ideas of what I might be doing wrong?