SELECT 
  object_id, 
  name 
FROM 
  tconnect_seo_names 
WHERE 
  name IN ('video-games', 'x-box-one') 
  AND type = 'c' 
  AND lang_code = 'en'

Query time 0.00104

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.004598964,
    "nested_loop": [
      {
        "table": {
          "table_name": "tconnect_seo_names",
          "access_type": "range",
          "possible_keys": ["name", "type"],
          "key": "type",
          "key_length": "761",
          "used_key_parts": ["name", "type", "lang_code"],
          "loops": 1,
          "rows": 2,
          "cost": 0.004598964,
          "filtered": 100,
          "index_condition": "tconnect_seo_names.`name` in ('video-games','x-box-one') and tconnect_seo_names.`type` = 'c' and tconnect_seo_names.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

object_id name
245 video-games
248 x-box-one