Minecraft – How to teleport an item to a player in Minecraft 1.13

minecraft-commandsminecraft-java-edition

In Minecraft pre-release 3 I was able to run the command
/execute as @e[type=item,name="Big Apple"] run tp @e[tag=bigapple] @s and it would find an item dropped on the ground named Big Apple and it would teleport it to me. Now in Minecraft 1.13 official release it doesn't work. Please help!

Best Answer

You should just be able to use:

tp @e[tag=bigapple] @s

and that will teleport any entity with the tag 'bigapple' to the executor of the command.

NOTE: Ensure this is being run on the command line, not in a command block. @s will not work in a command block without the appropriate selector.