java repository sql find not in list

Java
@Query( "select o from MyObject o where inventoryId in :ids" )
List<MyObject> findByInventoryIds(@Param("ids") List<Long> inventoryIdList);    @Query("FROM entity AS e WHERE e.id NOT IN ?1")
    List<ObjectName> findByNotId(List<Long> ids);

Source

Also in Java: