Skip to content

inetstudio/pages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elasticsearch

PUT app_index
PUT app_index/_mapping/pages
{
  "properties": {
    "id": {
      "type": "integer"
  	},
    "title": {
  	  "type": "string"
    },
	  "description": {
  	  "type": "text"
  	},  
	 "content": {
  	  "type": "text"
  	 }
  }
}